結果

問題 No.1338 Giant Class
ユーザー H20H20
提出日時 2021-04-22 00:38:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 85,792 KB
最終ジャッジ日時 2024-07-04 06:06:10
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 293 ms
76,928 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 45 ms
54,784 KB
testcase_05 AC 51 ms
61,312 KB
testcase_06 AC 248 ms
83,300 KB
testcase_07 AC 310 ms
83,868 KB
testcase_08 AC 236 ms
83,304 KB
testcase_09 AC 226 ms
83,200 KB
testcase_10 AC 342 ms
85,792 KB
testcase_11 AC 105 ms
77,172 KB
testcase_12 AC 263 ms
81,492 KB
testcase_13 AC 225 ms
83,056 KB
testcase_14 AC 118 ms
77,892 KB
testcase_15 AC 136 ms
79,104 KB
testcase_16 AC 100 ms
76,712 KB
testcase_17 AC 230 ms
83,328 KB
testcase_18 AC 117 ms
77,848 KB
testcase_19 AC 151 ms
80,060 KB
testcase_20 AC 339 ms
84,608 KB
testcase_21 AC 360 ms
85,724 KB
testcase_22 AC 342 ms
84,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
H,W,Q = map(int,input().split())
d = defaultdict(lambda: H)
seat = H*W
for _ in range(Q):
    y,x=map(int,input().split())
    if d[x]>=y:
        seat -= d[x]-y+1
        d[x]=y-1
    print(seat)
0