結果

問題 No.1338 Giant Class
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-06-02 20:55:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 85,156 KB
最終ジャッジ日時 2024-04-27 14:01:13
合計ジャッジ時間 7,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 301 ms
76,504 KB
testcase_03 AC 40 ms
55,972 KB
testcase_04 AC 43 ms
55,396 KB
testcase_05 AC 49 ms
62,424 KB
testcase_06 AC 237 ms
83,048 KB
testcase_07 AC 324 ms
83,484 KB
testcase_08 AC 232 ms
83,272 KB
testcase_09 AC 228 ms
83,052 KB
testcase_10 AC 361 ms
85,156 KB
testcase_11 AC 110 ms
76,672 KB
testcase_12 AC 263 ms
81,248 KB
testcase_13 AC 220 ms
82,544 KB
testcase_14 AC 114 ms
78,492 KB
testcase_15 AC 136 ms
79,420 KB
testcase_16 AC 99 ms
77,372 KB
testcase_17 AC 228 ms
83,512 KB
testcase_18 AC 115 ms
78,288 KB
testcase_19 AC 156 ms
80,280 KB
testcase_20 AC 345 ms
84,864 KB
testcase_21 AC 338 ms
85,116 KB
testcase_22 AC 359 ms
84,764 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