結果

問題 No.1338 Giant Class
ユーザー cuptea11139999cuptea11139999
提出日時 2021-06-08 22:57:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,912 KB
最終ジャッジ日時 2024-11-27 06:08:43
合計ジャッジ時間 7,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,376 KB
testcase_01 AC 45 ms
53,120 KB
testcase_02 AC 322 ms
77,568 KB
testcase_03 AC 47 ms
54,016 KB
testcase_04 AC 50 ms
54,656 KB
testcase_05 AC 59 ms
61,184 KB
testcase_06 AC 272 ms
84,196 KB
testcase_07 AC 355 ms
86,020 KB
testcase_08 AC 266 ms
84,096 KB
testcase_09 AC 255 ms
83,040 KB
testcase_10 AC 383 ms
87,040 KB
testcase_11 AC 125 ms
77,312 KB
testcase_12 AC 301 ms
82,944 KB
testcase_13 AC 255 ms
82,768 KB
testcase_14 AC 142 ms
79,232 KB
testcase_15 AC 167 ms
79,488 KB
testcase_16 AC 122 ms
77,056 KB
testcase_17 AC 257 ms
84,292 KB
testcase_18 AC 142 ms
78,720 KB
testcase_19 AC 174 ms
79,872 KB
testcase_20 AC 380 ms
87,912 KB
testcase_21 AC 374 ms
87,660 KB
testcase_22 AC 381 ms
87,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
h,w,q= list(map(int,input().split()))
d = defaultdict(lambda:h)
seat = h*w
for i in range(q):
    y,x= list(map(int,input().split()))
    if d[x] >= y:
        seat -= d[x]-y+1
        d[x] = y-1
    print(seat)
0