結果

問題 No.1338 Giant Class
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-06-02 20:55:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,400 KB
最終ジャッジ日時 2024-11-15 16:24:18
合計ジャッジ時間 7,748 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 312 ms
76,800 KB
testcase_03 AC 47 ms
54,144 KB
testcase_04 AC 50 ms
55,168 KB
testcase_05 AC 57 ms
61,312 KB
testcase_06 AC 267 ms
83,200 KB
testcase_07 AC 347 ms
84,032 KB
testcase_08 AC 258 ms
83,200 KB
testcase_09 AC 242 ms
83,096 KB
testcase_10 AC 368 ms
85,400 KB
testcase_11 AC 110 ms
76,824 KB
testcase_12 AC 304 ms
81,628 KB
testcase_13 AC 252 ms
83,408 KB
testcase_14 AC 137 ms
78,308 KB
testcase_15 AC 156 ms
79,796 KB
testcase_16 AC 113 ms
77,244 KB
testcase_17 AC 261 ms
83,664 KB
testcase_18 AC 134 ms
78,336 KB
testcase_19 AC 164 ms
80,116 KB
testcase_20 AC 367 ms
84,884 KB
testcase_21 AC 371 ms
85,248 KB
testcase_22 AC 374 ms
85,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
H,W,Q=map(int, input().split())

max_s = H*W
rank = collections.defaultdict(lambda :H)
for _ in range(Q):
    y,x=map(int,input().split())
    x-=1; y-=1
    if y < rank[x]:
        delta = rank[x] - y
        max_s -= delta
        print(max_s)
        rank[x] = y
    else:
        print(max_s)
0