結果

問題 No.1338 Giant Class
ユーザー wattaiheiwattaihei
提出日時 2021-01-15 22:17:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,136 KB
最終ジャッジ日時 2024-05-05 00:13:31
合計ジャッジ時間 5,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 242 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 184 ms
17,520 KB
testcase_07 AC 257 ms
24,012 KB
testcase_08 AC 171 ms
17,268 KB
testcase_09 AC 164 ms
17,408 KB
testcase_10 AC 296 ms
23,940 KB
testcase_11 AC 49 ms
11,776 KB
testcase_12 AC 210 ms
17,392 KB
testcase_13 AC 171 ms
17,384 KB
testcase_14 AC 62 ms
12,416 KB
testcase_15 AC 87 ms
14,124 KB
testcase_16 AC 49 ms
11,648 KB
testcase_17 AC 176 ms
17,384 KB
testcase_18 AC 65 ms
12,416 KB
testcase_19 AC 94 ms
14,076 KB
testcase_20 AC 288 ms
23,996 KB
testcase_21 AC 300 ms
24,116 KB
testcase_22 AC 294 ms
24,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

H, W, Q = map(int, input().rstrip().split())
dic = {}
ans = H*W
for _ in range(Q):
    y, x = map(int, input().rstrip().split())
    y -= 1; x -= 1
    d = dic.get(x, H)
    if d > y:
        ans -= (d-y)
        dic[x] = y
    print(ans)
0