結果

問題 No.1338 Giant Class
ユーザー pluto77pluto77
提出日時 2021-03-06 12:58:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 754 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,964 KB
最終ジャッジ日時 2024-10-08 10:09:10
合計ジャッジ時間 10,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 692 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 488 ms
17,240 KB
testcase_07 AC 670 ms
23,964 KB
testcase_08 AC 449 ms
17,364 KB
testcase_09 AC 425 ms
17,368 KB
testcase_10 AC 736 ms
23,888 KB
testcase_11 AC 97 ms
11,520 KB
testcase_12 AC 543 ms
17,288 KB
testcase_13 AC 435 ms
17,236 KB
testcase_14 AC 138 ms
12,272 KB
testcase_15 AC 193 ms
14,052 KB
testcase_16 AC 82 ms
11,520 KB
testcase_17 AC 442 ms
17,236 KB
testcase_18 AC 137 ms
12,400 KB
testcase_19 AC 221 ms
14,056 KB
testcase_20 AC 754 ms
23,812 KB
testcase_21 AC 744 ms
23,892 KB
testcase_22 AC 743 ms
23,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1338

H, W, Q = map(int, input().split())
dic = {}
res = H*W
for i in range(Q):
    y, x = map(int, input().split())
    y -= 1; x -= 1
    d = dic.get(x, H)
    if d > y:
        res-= (d-y)
        dic[x] = y
    print(res)
    
0