結果
| 問題 |
No.1056 2D Lamps
|
| コンテスト | |
| ユーザー |
noshi91
|
| 提出日時 | 2019-11-16 00:10:07 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 99 bytes |
| コンパイル時間 | 148 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-09-19 11:02:07 |
| 合計ジャッジ時間 | 2,604 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 14 |
ソースコード
temp = list(map(int, input().split()))
n = temp[0]
m = temp[1]
for _ in range(m*(n+1)):
input()
noshi91