結果

問題 No.1338 Giant Class
ユーザー LignanLignan
提出日時 2021-07-09 12:01:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 795 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,188 KB
最終ジャッジ日時 2024-07-01 13:56:53
合計ジャッジ時間 11,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 706 ms
10,880 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 487 ms
17,244 KB
testcase_07 AC 687 ms
24,188 KB
testcase_08 AC 460 ms
17,516 KB
testcase_09 AC 432 ms
17,372 KB
testcase_10 AC 754 ms
23,992 KB
testcase_11 AC 98 ms
11,776 KB
testcase_12 AC 562 ms
17,244 KB
testcase_13 AC 448 ms
17,500 KB
testcase_14 AC 144 ms
12,544 KB
testcase_15 AC 194 ms
14,196 KB
testcase_16 AC 87 ms
11,776 KB
testcase_17 AC 448 ms
17,376 KB
testcase_18 AC 139 ms
12,536 KB
testcase_19 AC 228 ms
14,060 KB
testcase_20 AC 777 ms
23,956 KB
testcase_21 AC 767 ms
24,112 KB
testcase_22 AC 795 ms
24,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

h,w,q=map(int,input().split())
d=defaultdict(lambda: h+1)

cnt=h*w

for i in range(q):
    y,x=map(int,input().split())
    if y<=d[x]:
        cnt-=d[x]-y
        d[x]=y
        print(cnt)
    else:
        print(cnt)
        




0