結果

問題 No.1338 Giant Class
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-01-15 21:40:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,216 KB
最終ジャッジ日時 2024-05-04 23:04:00
合計ジャッジ時間 6,528 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 315 ms
76,416 KB
testcase_03 AC 44 ms
52,352 KB
testcase_04 AC 48 ms
53,248 KB
testcase_05 AC 56 ms
59,392 KB
testcase_06 AC 264 ms
82,176 KB
testcase_07 AC 294 ms
85,428 KB
testcase_08 AC 225 ms
83,052 KB
testcase_09 AC 220 ms
82,944 KB
testcase_10 AC 330 ms
86,216 KB
testcase_11 AC 119 ms
76,672 KB
testcase_12 AC 284 ms
80,896 KB
testcase_13 AC 241 ms
82,688 KB
testcase_14 AC 121 ms
77,440 KB
testcase_15 AC 152 ms
78,720 KB
testcase_16 AC 124 ms
76,032 KB
testcase_17 AC 246 ms
82,432 KB
testcase_18 AC 124 ms
77,312 KB
testcase_19 AC 151 ms
79,744 KB
testcase_20 AC 324 ms
85,288 KB
testcase_21 AC 324 ms
84,612 KB
testcase_22 AC 326 ms
85,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, q = map(int, input().split())
d = dict()
ans = h * w
for _ in range(q):
    y, x = map(int, input().split())
    try:
        ans -= max(0, (h - y + 1) - d[x])
        d[x] = max(d[x], (h - y + 1))
    except:
        ans -= (h - y + 1)
        d[x] = (h - y + 1)
    print(ans)
0