結果
| 問題 | No.1130 Grid Numbers |
| ユーザー |
chocopuu
|
| 提出日時 | 2020-07-27 00:41:19 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 525 ms / 2,000 ms |
| コード長 | 190 bytes |
| 記録 | |
| コンパイル時間 | 480 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 34,988 KB |
| 最終ジャッジ日時 | 2026-03-19 19:50:20 |
| 合計ジャッジ時間 | 8,556 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
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)
chocopuu