Loading...
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
Download
  1. n = int(input())
  2. if n>=1 and n<1000000000000000000:
  3. while(n!=0):
  4. x, y, z = map(int, input().split())
  5. if x>y and x > z:
  6. print(x)
  7. elif y>x and y>z:
  8. print(y)
  9. elif z>x and z>y:
  10. print(z)
  11. else:
  12. print("All n are equal.")
  13. n = n - 1
  14. else:
  15. print("Error")
  16.