結果

問題 No.1338 Giant Class
ユーザー 👑 rin204rin204
提出日時 2022-01-18 18:46:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 222 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 847,760 KB
最終ジャッジ日時 2024-11-23 13:27:12
合計ジャッジ時間 9,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 295 ms
77,236 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 48 ms
59,644 KB
testcase_06 AC 269 ms
145,736 KB
testcase_07 AC 351 ms
146,328 KB
testcase_08 AC 236 ms
98,304 KB
testcase_09 AC 215 ms
83,072 KB
testcase_10 AC 332 ms
99,420 KB
testcase_11 AC 132 ms
136,960 KB
testcase_12 AC 248 ms
76,864 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, q = map(int, input().split())

min_ = [h + 1] * w
ans = h * w
for _ in range(q):
    y, x = map(int, input().split())
    x -= 1
    if y < min_[x]:
        ans -= min_[x] - y
        min_[x] = y
    print(ans)
    
0