結果

問題 No.1338 Giant Class
ユーザー 👑 rin204rin204
提出日時 2022-01-18 18:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,720 KB
最終ジャッジ日時 2024-11-23 13:27:19
合計ジャッジ時間 7,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 45 ms
51,584 KB
testcase_02 AC 311 ms
76,288 KB
testcase_03 AC 43 ms
52,352 KB
testcase_04 AC 47 ms
52,864 KB
testcase_05 AC 54 ms
59,136 KB
testcase_06 AC 251 ms
82,852 KB
testcase_07 AC 329 ms
85,720 KB
testcase_08 AC 252 ms
82,160 KB
testcase_09 AC 234 ms
82,944 KB
testcase_10 AC 350 ms
85,040 KB
testcase_11 AC 113 ms
76,672 KB
testcase_12 AC 278 ms
80,896 KB
testcase_13 AC 239 ms
82,688 KB
testcase_14 AC 129 ms
77,312 KB
testcase_15 AC 149 ms
78,848 KB
testcase_16 AC 115 ms
76,544 KB
testcase_17 AC 237 ms
82,944 KB
testcase_18 AC 128 ms
77,312 KB
testcase_19 AC 157 ms
79,104 KB
testcase_20 AC 348 ms
85,216 KB
testcase_21 AC 344 ms
85,468 KB
testcase_22 AC 347 ms
85,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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