結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 283 ms
76,416 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 37 ms
53,120 KB
testcase_05 AC 45 ms
59,392 KB
testcase_06 AC 226 ms
82,724 KB
testcase_07 AC 297 ms
85,800 KB
testcase_08 AC 224 ms
82,852 KB
testcase_09 AC 224 ms
82,944 KB
testcase_10 AC 320 ms
84,984 KB
testcase_11 AC 102 ms
76,928 KB
testcase_12 AC 247 ms
81,024 KB
testcase_13 AC 222 ms
82,688 KB
testcase_14 AC 114 ms
77,648 KB
testcase_15 AC 132 ms
78,848 KB
testcase_16 AC 97 ms
76,416 KB
testcase_17 AC 214 ms
82,944 KB
testcase_18 AC 119 ms
77,696 KB
testcase_19 AC 145 ms
79,232 KB
testcase_20 AC 332 ms
85,348 KB
testcase_21 AC 333 ms
85,336 KB
testcase_22 AC 332 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