fork download
  1. # Input
  2. N, T = map(int, input().split())
  3. A = [ 0 ] * N
  4. B = [ 0 ] * N
  5. C = [ 0 ] * N
  6. D = [ 0 ] * N
  7. for i in range(N):
  8. A[i], B[i], C[i], D[i] = map(int, input().split())
  9.  
  10. # Interaction
  11. for i in range(T):
  12. CurrentMoney = 0
  13. CurrentCorps = 0
  14. CurrentMoney, CurrentCorps = map(int, input().split())
  15. print("3")
Runtime error #stdin #stdout #stderr 0.15s 25448KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 2, in <module>
EOFError: EOF when reading a line