結果
問題 | No.1338 Giant Class |
ユーザー | yakeshiba |
提出日時 | 2021-06-06 22:33:39 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 1,014 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 851,712 KB |
最終ジャッジ日時 | 2024-11-23 19:11:00 |
合計ジャッジ時間 | 11,318 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,584 KB |
testcase_01 | AC | 41 ms
51,712 KB |
testcase_02 | AC | 303 ms
77,056 KB |
testcase_03 | AC | 41 ms
52,224 KB |
testcase_04 | AC | 45 ms
53,120 KB |
testcase_05 | AC | 52 ms
59,776 KB |
testcase_06 | AC | 280 ms
145,920 KB |
testcase_07 | AC | 345 ms
146,304 KB |
testcase_08 | AC | 244 ms
98,304 KB |
testcase_09 | AC | 215 ms
82,560 KB |
testcase_10 | AC | 340 ms
98,816 KB |
testcase_11 | AC | 155 ms
136,832 KB |
testcase_12 | AC | 246 ms
76,800 KB |
testcase_13 | RE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
ソースコード
h, w, q = map(int,input().split()) occupied = [h]*w ans = h*w for _ in range(q): y, x = map(lambda x:int(x)-1,input().split()) if y < occupied[x]: ans -= abs(occupied[x]-y) occupied[x] = y print(ans)