結果
問題 |
No.1130 Grid Numbers
|
ユーザー |
![]() |
提出日時 | 2020-09-20 01:26:32 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 109 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-23 23:50:56 |
合計ジャッジ時間 | 1,115 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 12 |
ソースコード
h,w = map(int,input().split()) li = [] for i in range(h): ls = list(map(int,input().split())) li += ls li = li.sort for i in range(h): le = "" for j in range(w): le += str(" ") + str(li[i*w+j]) print(le)