結果

問題 No.1338 Giant Class
ユーザー hir355hir355
提出日時 2021-01-15 21:53:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,372 KB
最終ジャッジ日時 2024-05-04 23:33:07
合計ジャッジ時間 6,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 342 ms
76,288 KB
testcase_03 AC 46 ms
52,352 KB
testcase_04 AC 54 ms
53,248 KB
testcase_05 AC 56 ms
59,392 KB
testcase_06 AC 242 ms
82,848 KB
testcase_07 AC 303 ms
85,840 KB
testcase_08 AC 228 ms
82,976 KB
testcase_09 AC 215 ms
82,688 KB
testcase_10 AC 369 ms
86,372 KB
testcase_11 AC 118 ms
76,416 KB
testcase_12 AC 316 ms
80,896 KB
testcase_13 AC 224 ms
82,688 KB
testcase_14 AC 128 ms
77,440 KB
testcase_15 AC 171 ms
78,976 KB
testcase_16 AC 130 ms
76,416 KB
testcase_17 AC 285 ms
82,304 KB
testcase_18 AC 139 ms
77,440 KB
testcase_19 AC 148 ms
79,360 KB
testcase_20 AC 320 ms
85,432 KB
testcase_21 AC 317 ms
85,344 KB
testcase_22 AC 333 ms
85,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, q = map(int, input().split())
d = dict()
ans = w * h
for i in range(q):
    y, x = map(int, input().split())
    if x in d:
        ans -= d[x]
        d[x] = min(d[x], y - 1)
        ans += d[x]
    else:
        ans -= h
        d[x] = y - 1
        ans += d[x] 
    print(ans)
0