結果

問題 No.1130 Grid Numbers
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-25 08:47:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 53,356 KB
最終ジャッジ日時 2024-11-16 00:35:52
合計ジャッジ時間 1,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,928 KB
testcase_01 AC 38 ms
52,964 KB
testcase_02 AC 39 ms
52,032 KB
testcase_03 AC 37 ms
52,880 KB
testcase_04 AC 38 ms
52,904 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 39 ms
53,088 KB
testcase_07 AC 40 ms
52,036 KB
testcase_08 AC 42 ms
52,436 KB
testcase_09 AC 39 ms
53,356 KB
testcase_10 AC 39 ms
52,832 KB
testcase_11 AC 39 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(h)]
A = sum(A,[])
A.sort()
for i in range(h*w):
    if (i+1) % w == 0:
        print(A[i],end="\n")
    else:
        print(A[i],end=" ")
0