結果

問題 No.1338 Giant Class
ユーザー setsuatsusetsuatsu
提出日時 2024-01-06 07:02:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 85,856 KB
最終ジャッジ日時 2024-09-27 19:15:37
合計ジャッジ時間 6,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 43 ms
54,628 KB
testcase_02 AC 314 ms
76,656 KB
testcase_03 AC 45 ms
55,700 KB
testcase_04 AC 46 ms
55,384 KB
testcase_05 AC 53 ms
62,348 KB
testcase_06 AC 239 ms
83,452 KB
testcase_07 AC 334 ms
83,880 KB
testcase_08 AC 240 ms
83,284 KB
testcase_09 AC 227 ms
83,328 KB
testcase_10 AC 342 ms
84,904 KB
testcase_11 AC 105 ms
77,452 KB
testcase_12 AC 269 ms
81,496 KB
testcase_13 AC 227 ms
83,192 KB
testcase_14 AC 120 ms
78,188 KB
testcase_15 AC 138 ms
79,464 KB
testcase_16 AC 103 ms
76,916 KB
testcase_17 AC 228 ms
83,180 KB
testcase_18 AC 120 ms
77,936 KB
testcase_19 AC 150 ms
80,420 KB
testcase_20 AC 343 ms
85,856 KB
testcase_21 AC 336 ms
85,608 KB
testcase_22 AC 336 ms
84,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, Q = map(int, input().split())
from collections import defaultdict
min_y = defaultdict(int)
ans = H*W

for _ in range(Q):
    y, x = map(int, input().split())
    if x not in min_y:
        ans -= H - y +1
        min_y[x] = y
    else:
        ans -= min_y[x] - min(min_y[x], y)
        min_y[x] = min(min_y[x], y)
    
    print(ans)
0