結果

問題 No.1338 Giant Class
ユーザー ntudantuda
提出日時 2024-09-16 11:05:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-09-16 11:05:24
合計ジャッジ時間 7,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 328 ms
76,540 KB
testcase_03 AC 43 ms
54,016 KB
testcase_04 AC 47 ms
54,528 KB
testcase_05 AC 52 ms
61,184 KB
testcase_06 AC 272 ms
82,876 KB
testcase_07 AC 345 ms
84,904 KB
testcase_08 AC 265 ms
83,016 KB
testcase_09 AC 252 ms
83,424 KB
testcase_10 AC 381 ms
86,480 KB
testcase_11 AC 130 ms
77,300 KB
testcase_12 AC 295 ms
81,096 KB
testcase_13 AC 261 ms
82,432 KB
testcase_14 AC 124 ms
77,696 KB
testcase_15 AC 169 ms
79,408 KB
testcase_16 AC 102 ms
76,928 KB
testcase_17 AC 257 ms
83,476 KB
testcase_18 AC 120 ms
77,940 KB
testcase_19 AC 172 ms
80,000 KB
testcase_20 AC 387 ms
85,976 KB
testcase_21 AC 397 ms
85,196 KB
testcase_22 AC 405 ms
86,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
dic = defaultdict(int)
H,W,Q = map(int,input().split())
NC = 0
HW = H * W
for _ in range(Q):
    Y,X = map(int,input().split())
    ny = H - Y + 1
    now = dic[X]
    if now < ny:
        NC += ny - now
        dic[X] = ny
    print(HW - NC)
0