Loading...
Submission
Id When Author Problem Language CPU Memory Verdict
17844 2024-04-24 02:01:37 ewu_intra24_mock_u_84 Max Number Python 2 16 ms 7264 kb Runtime Error - 1
Test Cases
CPU Memory Verdict
1 16 ms 7264 kb Runtime Error
2 - - Skipped
3 - - Skipped
4 - - Skipped
5 - - Skipped
6 - - Skipped
7 - - Skipped
Source Code
program.py
Download
  1. n = int(input())
  2. if n<1 or n>1000000000000000000:
  3. print("Error")
  4. else:
  5. while(n!=0):
  6. x, y, z = map(int, input().split())
  7. if x>y and x > z:
  8. print(x)
  9. elif y>x and y>z:
  10. print(y)
  11. elif z>x and z>y:
  12. print(z)
  13. else:
  14. print("All n are equal.")
  15. n = n - 1