結果

問題 No.1338 Giant Class
ユーザー 👑 rin204rin204
提出日時 2022-01-18 18:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,360 KB
最終ジャッジ日時 2024-05-02 19:28:12
合計ジャッジ時間 7,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,584 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 325 ms
76,672 KB
testcase_03 AC 45 ms
52,224 KB
testcase_04 AC 46 ms
52,736 KB
testcase_05 AC 55 ms
59,392 KB
testcase_06 AC 268 ms
82,472 KB
testcase_07 AC 349 ms
85,348 KB
testcase_08 AC 257 ms
82,596 KB
testcase_09 AC 257 ms
82,816 KB
testcase_10 AC 386 ms
86,360 KB
testcase_11 AC 118 ms
76,544 KB
testcase_12 AC 307 ms
80,640 KB
testcase_13 AC 256 ms
82,560 KB
testcase_14 AC 138 ms
77,184 KB
testcase_15 AC 153 ms
78,720 KB
testcase_16 AC 118 ms
76,288 KB
testcase_17 AC 254 ms
82,688 KB
testcase_18 AC 130 ms
77,440 KB
testcase_19 AC 171 ms
79,360 KB
testcase_20 AC 374 ms
85,468 KB
testcase_21 AC 399 ms
85,208 KB
testcase_22 AC 376 ms
84,460 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