結果

問題 No.1338 Giant Class
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-15 21:39:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 92,768 KB
最終ジャッジ日時 2024-05-04 23:02:54
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 85 ms
80,996 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
52,832 KB
testcase_06 AC 93 ms
88,984 KB
testcase_07 AC 114 ms
88,784 KB
testcase_08 AC 93 ms
88,680 KB
testcase_09 AC 89 ms
87,064 KB
testcase_10 AC 119 ms
91,192 KB
testcase_11 AC 53 ms
68,864 KB
testcase_12 AC 99 ms
85,888 KB
testcase_13 AC 89 ms
87,844 KB
testcase_14 AC 61 ms
74,368 KB
testcase_15 AC 70 ms
79,712 KB
testcase_16 AC 53 ms
67,840 KB
testcase_17 AC 92 ms
89,068 KB
testcase_18 AC 58 ms
74,240 KB
testcase_19 AC 71 ms
79,708 KB
testcase_20 AC 118 ms
92,768 KB
testcase_21 AC 118 ms
92,516 KB
testcase_22 AC 119 ms
92,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""


"""

import sys
from sys import stdin

H,W,Q = map(int,stdin.readline().split())

dic = {}
ans = H*W
ALIS = []

for i in range(Q):

    Y,X = map(int,stdin.readline().split())
    if X not in dic:
        dic[X] = H+1

    if dic[X] > Y:
        ans -= dic[X]-Y
        dic[X] = Y

    ALIS.append(ans)

print ("\n".join(map(str,ALIS)))
0