Submission #28932544


Source Code Expand

H, W = map(int, input().split())
A = [0]*H
for h in range(H):
    A[h] = input().split()

for w in range(W):
    l = []
    for h in range(H):
        l.append(int(A[h][w]))
    print(*l)

Submission Info

Submission Time
Task B - Matrix Transposition
User is0292hx
Language Python (3.8.2)
Score 200
Code Size 196 Byte
Status AC
Exec Time 241 ms
Memory 36872 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 2
AC × 10
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 126 ms 16828 KiB
001.txt AC 19 ms 8992 KiB
002.txt AC 123 ms 16720 KiB
003.txt AC 87 ms 16180 KiB
004.txt AC 87 ms 16300 KiB
005.txt AC 87 ms 16120 KiB
006.txt AC 99 ms 16996 KiB
007.txt AC 241 ms 36872 KiB
example0.txt AC 18 ms 9064 KiB
example1.txt AC 19 ms 8896 KiB