結果
| 問題 |
No.1056 2D Lamps
|
| コンテスト | |
| ユーザー |
noshi91
|
| 提出日時 | 2019-11-16 00:11:16 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 101 bytes |
| コンパイル時間 | 324 ms |
| コンパイル使用メモリ | 82,376 KB |
| 実行使用メモリ | 76,284 KB |
| 最終ジャッジ日時 | 2024-09-19 11:01:55 |
| 合計ジャッジ時間 | 2,863 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 14 |
ソースコード
temp = list(map(int, input().split()))
n = temp[0]
m = temp[1]
for _ in range(m*(n+1)-1):
input()
noshi91