結果

問題 No.1338 Giant Class
ユーザー yakeshibayakeshiba
提出日時 2021-06-07 00:47:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 86,504 KB
最終ジャッジ日時 2024-05-03 02:10:20
合計ジャッジ時間 7,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,036 KB
testcase_01 AC 40 ms
53,488 KB
testcase_02 AC 286 ms
77,356 KB
testcase_03 AC 38 ms
54,932 KB
testcase_04 AC 40 ms
55,264 KB
testcase_05 AC 48 ms
62,032 KB
testcase_06 AC 224 ms
83,768 KB
testcase_07 AC 292 ms
85,012 KB
testcase_08 AC 212 ms
83,768 KB
testcase_09 AC 205 ms
83,752 KB
testcase_10 AC 307 ms
86,504 KB
testcase_11 AC 97 ms
77,592 KB
testcase_12 AC 244 ms
81,988 KB
testcase_13 AC 215 ms
83,716 KB
testcase_14 AC 111 ms
78,164 KB
testcase_15 AC 125 ms
79,468 KB
testcase_16 AC 91 ms
77,040 KB
testcase_17 AC 209 ms
84,016 KB
testcase_18 AC 121 ms
78,516 KB
testcase_19 AC 141 ms
80,500 KB
testcase_20 AC 320 ms
85,828 KB
testcase_21 AC 308 ms
86,028 KB
testcase_22 AC 313 ms
86,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

h, w, q = map(int,input().split())
occupied = defaultdict(lambda: h)
ans = h*w
for _ in range(q):
    y, x = map(lambda x:int(x)-1,input().split())
    if y < occupied[x]:
        ans -= abs(occupied[x]-y)
        occupied[x] = y
    print(ans)
    
0