結果

問題 No.1130 Grid Numbers
ユーザー chocopuuchocopuu
提出日時 2020-07-27 00:41:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,936 KB
最終ジャッジ日時 2024-06-30 02:41:35
合計ジャッジ時間 7,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 444 ms
43,784 KB
testcase_01 AC 513 ms
43,936 KB
testcase_02 AC 436 ms
43,672 KB
testcase_03 AC 438 ms
43,652 KB
testcase_04 AC 438 ms
43,676 KB
testcase_05 AC 434 ms
43,792 KB
testcase_06 AC 434 ms
43,656 KB
testcase_07 AC 444 ms
43,680 KB
testcase_08 AC 442 ms
43,428 KB
testcase_09 AC 447 ms
43,288 KB
testcase_10 AC 450 ms
43,416 KB
testcase_11 AC 447 ms
43,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
H, W = map(int, input().split())
a = np.array([list(map(int, input().split())) for i in range(H)])
a = a.reshape(1, -1)
a.sort()
a = a.reshape(H, W)
for e in a : print(*e)
0