結果

問題 No.1338 Giant Class
ユーザー H20H20
提出日時 2021-04-22 00:31:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,972 KB
最終ジャッジ日時 2024-07-04 06:05:48
合計ジャッジ時間 6,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 251 ms
83,436 KB
testcase_07 AC 322 ms
84,508 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 109 ms
77,188 KB
testcase_12 WA -
testcase_13 AC 237 ms
83,232 KB
testcase_14 AC 125 ms
77,468 KB
testcase_15 AC 144 ms
79,196 KB
testcase_16 AC 105 ms
76,940 KB
testcase_17 AC 232 ms
82,892 KB
testcase_18 AC 124 ms
77,696 KB
testcase_19 AC 155 ms
79,988 KB
testcase_20 AC 343 ms
85,972 KB
testcase_21 AC 338 ms
84,356 KB
testcase_22 AC 346 ms
84,476 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())
    seat -= max(0,d[x]-y+1)
    d[x]=y-1
    print(seat)
0