結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 306 ms
76,544 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 47 ms
59,520 KB
testcase_06 AC 244 ms
82,908 KB
testcase_07 AC 313 ms
84,576 KB
testcase_08 AC 231 ms
82,600 KB
testcase_09 AC 224 ms
82,560 KB
testcase_10 AC 338 ms
84,984 KB
testcase_11 AC 100 ms
76,672 KB
testcase_12 AC 265 ms
80,896 KB
testcase_13 AC 231 ms
82,816 KB
testcase_14 AC 114 ms
77,440 KB
testcase_15 AC 137 ms
78,720 KB
testcase_16 AC 96 ms
76,160 KB
testcase_17 AC 229 ms
82,944 KB
testcase_18 AC 126 ms
77,184 KB
testcase_19 AC 154 ms
78,976 KB
testcase_20 AC 341 ms
85,080 KB
testcase_21 AC 337 ms
85,348 KB
testcase_22 AC 340 ms
85,348 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