Submission
Id | When | Author | Problem | Language | CPU | Memory | Verdict |
---|---|---|---|---|---|---|---|
17853 | 2024-04-24 02:16:06 | ewu_intra24_mock_u_84 | Max Number | Python 2 | 9 ms | 7028 kb | Runtime Error - 1 |
Test Cases
CPU | Memory | Verdict | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
1 | 9 ms | 7028 kb | Runtime Error | ||||||||
2 | - | - | Skipped | ||||||||
3 | - | - | Skipped | ||||||||
4 | - | - | Skipped | ||||||||
5 | - | - | Skipped | ||||||||
6 | - | - | Skipped | ||||||||
7 | - | - | Skipped | ||||||||
Source Code
program.py
n = int(input()) if n>=1 and n<1000000000000000000: while(n!=0): x, y, z = map(int, input().split()) if x>y and x > z: print(x) elif y>x and y>z: print(y) elif z>x and z>y: print(z) else: print("All n are equal.") n = n - 1 else: print("Error")