結果

問題 No.1338 Giant Class
ユーザー tt
提出日時 2021-02-10 20:01:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,000 KB
最終ジャッジ日時 2024-07-08 07:23:48
合計ジャッジ時間 9,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 609 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 409 ms
17,124 KB
testcase_07 AC 580 ms
23,976 KB
testcase_08 AC 380 ms
17,380 KB
testcase_09 AC 354 ms
17,380 KB
testcase_10 AC 656 ms
23,860 KB
testcase_11 AC 81 ms
11,520 KB
testcase_12 AC 458 ms
17,244 KB
testcase_13 AC 373 ms
17,124 KB
testcase_14 AC 117 ms
12,156 KB
testcase_15 AC 163 ms
13,812 KB
testcase_16 AC 71 ms
11,392 KB
testcase_17 AC 380 ms
17,248 KB
testcase_18 AC 122 ms
12,284 KB
testcase_19 AC 191 ms
14,064 KB
testcase_20 AC 627 ms
23,944 KB
testcase_21 AC 631 ms
24,000 KB
testcase_22 AC 637 ms
23,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, Q = map(int, input().split())

temp = {}
ans = H*W
for i in range(Q):
    y, x = map(int, input().split())
    if x not in temp:
        temp[x] = y
        ans -= H-y+1
    else:
        if temp[x] > y:
            ans -= temp[x]-y
            temp[x] = y
    print(ans)
0