結果

問題 No.1338 Giant Class
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-15 23:48:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,448 KB
最終ジャッジ日時 2024-05-05 02:06:46
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 102 ms
76,416 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 44 ms
54,528 KB
testcase_05 AC 47 ms
54,400 KB
testcase_06 AC 104 ms
84,736 KB
testcase_07 AC 128 ms
86,400 KB
testcase_08 AC 115 ms
84,480 KB
testcase_09 AC 105 ms
83,968 KB
testcase_10 AC 134 ms
87,168 KB
testcase_11 AC 64 ms
70,528 KB
testcase_12 AC 117 ms
82,816 KB
testcase_13 AC 99 ms
83,840 KB
testcase_14 AC 75 ms
75,124 KB
testcase_15 AC 84 ms
78,336 KB
testcase_16 AC 69 ms
69,632 KB
testcase_17 AC 98 ms
84,608 KB
testcase_18 AC 67 ms
74,496 KB
testcase_19 AC 80 ms
78,548 KB
testcase_20 AC 127 ms
88,172 KB
testcase_21 AC 128 ms
88,448 KB
testcase_22 AC 138 ms
88,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

H, W, Q = map(int, input().split())
row = defaultdict(int)
ans = H * W
for _ in range(Q):
    h, w = map(int, input().split())
    if not row[w]:
        ans -= H - h + 1
        row[w] = h
    else:
        if row[w] > h:
            ans -= row[w] - h
            row[w] = h
    print(ans)
0