結果

問題 No.1338 Giant Class
ユーザー shotoyooshotoyoo
提出日時 2021-01-15 21:49:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 92,096 KB
最終ジャッジ日時 2024-11-26 14:08:01
合計ジャッジ時間 3,549 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,824 KB
testcase_01 AC 35 ms
52,320 KB
testcase_02 AC 84 ms
83,540 KB
testcase_03 AC 35 ms
52,936 KB
testcase_04 AC 35 ms
53,536 KB
testcase_05 AC 38 ms
53,940 KB
testcase_06 AC 89 ms
87,612 KB
testcase_07 AC 102 ms
92,096 KB
testcase_08 AC 89 ms
88,264 KB
testcase_09 AC 84 ms
88,172 KB
testcase_10 AC 115 ms
90,628 KB
testcase_11 AC 50 ms
71,584 KB
testcase_12 AC 96 ms
86,420 KB
testcase_13 AC 85 ms
86,840 KB
testcase_14 AC 55 ms
76,528 KB
testcase_15 AC 64 ms
79,584 KB
testcase_16 AC 50 ms
69,224 KB
testcase_17 AC 86 ms
87,876 KB
testcase_18 AC 57 ms
75,980 KB
testcase_19 AC 66 ms
80,084 KB
testcase_20 AC 118 ms
92,028 KB
testcase_21 AC 114 ms
91,828 KB
testcase_22 AC 117 ms
91,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
_print = lambda *x: print(*x, file=sys.stderr)

h,w,q = list(map(int, input().split()))
d = {}
ans = 0
res = []
for i in range(q):
    y,x = map(int, input().split())
    if x in d:
        if d[x]>y:
            ans += (d[x]-y)
            d[x] = y
    else:
        ans += h - (y-1)
        d[x] = y
    res.append(h*w-ans)
write("\n".join(map(str, res)))
0