結果

問題 No.1338 Giant Class
ユーザー Pretender324Pretender324
提出日時 2021-01-15 22:12:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 308 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 158,080 KB
最終ジャッジ日時 2024-11-26 15:21:25
合計ジャッジ時間 43,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,496 KB
testcase_01 AC 41 ms
131,584 KB
testcase_02 AC 390 ms
82,596 KB
testcase_03 AC 48 ms
139,652 KB
testcase_04 AC 51 ms
66,176 KB
testcase_05 AC 60 ms
145,152 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 387 ms
154,368 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 902 ms
83,072 KB
testcase_15 TLE -
testcase_16 AC 289 ms
81,920 KB
testcase_17 TLE -
testcase_18 AC 859 ms
83,072 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

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