結果
問題 |
No.1130 Grid Numbers
|
ユーザー |
|
提出日時 | 2020-12-11 13:26:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 176 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 53,560 KB |
最終ジャッジ日時 | 2024-09-19 21:16:47 |
合計ジャッジ時間 | 1,325 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
h,w=map(int,input().split()) a=[] for i in range(h): a+=list(map(int,input().split())) a.sort() for i in range(h): p=i*w for j in range(w): print(a[p+j],end=' ') print()