結果

問題 No.1338 Giant Class
ユーザー ああいいああいい
提出日時 2021-12-27 17:08:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,932 KB
最終ジャッジ日時 2024-09-25 10:52:16
合計ジャッジ時間 10,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 699 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 466 ms
17,496 KB
testcase_07 AC 664 ms
23,828 KB
testcase_08 AC 455 ms
17,372 KB
testcase_09 AC 424 ms
17,372 KB
testcase_10 AC 729 ms
23,884 KB
testcase_11 AC 95 ms
11,648 KB
testcase_12 AC 545 ms
17,372 KB
testcase_13 AC 438 ms
17,244 KB
testcase_14 AC 138 ms
12,408 KB
testcase_15 AC 197 ms
13,960 KB
testcase_16 AC 83 ms
11,520 KB
testcase_17 AC 430 ms
17,372 KB
testcase_18 AC 134 ms
12,280 KB
testcase_19 AC 218 ms
13,872 KB
testcase_20 AC 731 ms
23,888 KB
testcase_21 AC 742 ms
23,932 KB
testcase_22 AC 747 ms
23,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = H * W
d = dict()
for _ in range(Q):
    y,x = map(int,input().split())
    if x not in d:
        d[x] = y
        ans -= H - y + 1
    else:
        u = d[x]
        if u <= y:
            pass
        else:
            d[x] = y
            ans -= u - y
    print(ans)
0