結果

問題 No.1338 Giant Class
ユーザー yakeshibayakeshiba
提出日時 2021-06-07 00:47:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 86,544 KB
最終ジャッジ日時 2024-11-23 22:27:29
合計ジャッジ時間 7,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 48 ms
53,248 KB
testcase_02 AC 361 ms
77,236 KB
testcase_03 AC 49 ms
54,648 KB
testcase_04 AC 52 ms
55,032 KB
testcase_05 AC 61 ms
61,568 KB
testcase_06 AC 270 ms
83,840 KB
testcase_07 AC 345 ms
84,880 KB
testcase_08 AC 256 ms
83,648 KB
testcase_09 AC 254 ms
83,704 KB
testcase_10 AC 373 ms
86,544 KB
testcase_11 AC 126 ms
77,420 KB
testcase_12 AC 297 ms
81,988 KB
testcase_13 AC 259 ms
83,756 KB
testcase_14 AC 141 ms
78,044 KB
testcase_15 AC 159 ms
79,360 KB
testcase_16 AC 122 ms
77,056 KB
testcase_17 AC 259 ms
83,584 KB
testcase_18 AC 142 ms
78,156 KB
testcase_19 AC 184 ms
80,108 KB
testcase_20 AC 389 ms
85,956 KB
testcase_21 AC 398 ms
85,700 KB
testcase_22 AC 376 ms
85,828 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