結果

問題 No.1338 Giant Class
ユーザー Pretender324Pretender324
提出日時 2021-01-15 22:12:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 308 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-05-05 00:06:18
合計ジャッジ時間 4,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,008 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 385 ms
76,568 KB
testcase_03 AC 42 ms
60,416 KB
testcase_04 AC 44 ms
61,184 KB
testcase_05 AC 54 ms
65,920 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

H, W, Q = map(int, input().split())
A = defaultdict(lambda: float('inf'))
ans = H * W
for _ in range(Q):
    Y, X = map(int, input().split())
    A[X] = min(A[X], Y)
    m = W - len(A.keys())
    ans = H * m
    for k, v in A.items():
        ans += v - 1
    print(ans)
0