/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Runtime Error Traceback (most recent call last): File "foo.py", line 5, in <module> EOFError: EOF when reading a line 38ms 3.102 MiB

Code


mat=[]
T=int(input())
for i in range(T):
    arr=input().split()
    N=int(arr[0])
    M=int(arr[1])
    x=int(arr[2])
    y=int(arr[3])
    for j in range(N):
        mat[j] = list(input())
        print(mat[j])

Information

Submit By
Type
Pretest
Problem
P1156 Low cost water management
Language
Python 3 (Python 3.12.3)
Submit At
2025-01-02 14:52:21
Judged At
2025-01-02 14:52:21
Judged By
Score
0
Total Time
38ms
Peak Memory
3.102 MiB