結果

問題 No.1338 Giant Class
ユーザー ayaoniayaoni
提出日時 2021-01-16 02:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 92,696 KB
最終ジャッジ日時 2024-11-26 20:32:49
合計ジャッジ時間 4,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,248 KB
testcase_01 AC 39 ms
52,876 KB
testcase_02 AC 119 ms
81,980 KB
testcase_03 AC 39 ms
52,424 KB
testcase_04 AC 41 ms
53,020 KB
testcase_05 AC 43 ms
54,508 KB
testcase_06 AC 118 ms
88,968 KB
testcase_07 AC 144 ms
89,336 KB
testcase_08 AC 118 ms
89,308 KB
testcase_09 AC 117 ms
87,324 KB
testcase_10 AC 158 ms
92,696 KB
testcase_11 AC 66 ms
74,580 KB
testcase_12 AC 138 ms
87,656 KB
testcase_13 AC 113 ms
87,584 KB
testcase_14 AC 74 ms
78,144 KB
testcase_15 AC 81 ms
78,876 KB
testcase_16 AC 63 ms
73,164 KB
testcase_17 AC 114 ms
89,284 KB
testcase_18 AC 75 ms
78,356 KB
testcase_19 AC 81 ms
79,200 KB
testcase_20 AC 156 ms
91,724 KB
testcase_21 AC 158 ms
91,600 KB
testcase_22 AC 156 ms
91,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


H,W,Q = MI()
YX = []
A = {}
for _ in range(Q):
    Y,X = MI()
    YX.append((Y,X))
    A[X] = H+1

ans = H*W
for i in range(Q):
    Y,X = YX[i]
    if A[X] > Y:
        ans -= A[X]-Y
        A[X] = Y
    print(ans)
0