結果

問題 No.1338 Giant Class
ユーザー ThetaTheta
提出日時 2022-10-14 17:54:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 716 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,140 KB
最終ジャッジ日時 2024-06-26 12:42:54
合計ジャッジ時間 9,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 616 ms
10,624 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 449 ms
17,268 KB
testcase_07 AC 627 ms
24,032 KB
testcase_08 AC 418 ms
17,392 KB
testcase_09 AC 384 ms
17,380 KB
testcase_10 AC 677 ms
23,752 KB
testcase_11 AC 90 ms
11,648 KB
testcase_12 AC 488 ms
17,264 KB
testcase_13 AC 404 ms
17,392 KB
testcase_14 AC 128 ms
12,416 KB
testcase_15 AC 181 ms
13,948 KB
testcase_16 AC 80 ms
11,776 KB
testcase_17 AC 407 ms
17,392 KB
testcase_18 AC 126 ms
12,160 KB
testcase_19 AC 207 ms
13,952 KB
testcase_20 AC 716 ms
24,140 KB
testcase_21 AC 700 ms
23,880 KB
testcase_22 AC 688 ms
23,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def main():
    H, W, Q = map(int, input().split())
    rest_sheets = H * W
    most_front_other_students = defaultdict(lambda: H + 1)
    for _ in range(Q):
        y, x = map(int, input().split())
        if most_front_other_students[x] < y:
            print(rest_sheets)
        else:
            rest_sheets -= (most_front_other_students[x] - y)
            most_front_other_students[x] = y
            print(rest_sheets)


if __name__ == "__main__":
    main()
0