結果

問題 No.1338 Giant Class
ユーザー shotoyooshotoyoo
提出日時 2021-01-15 21:49:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,940 KB
最終ジャッジ日時 2024-05-04 23:25:00
合計ジャッジ時間 3,627 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,224 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 76 ms
83,584 KB
testcase_03 AC 33 ms
52,864 KB
testcase_04 AC 32 ms
52,480 KB
testcase_05 AC 34 ms
53,120 KB
testcase_06 AC 81 ms
87,552 KB
testcase_07 AC 94 ms
91,940 KB
testcase_08 AC 84 ms
88,576 KB
testcase_09 AC 80 ms
88,532 KB
testcase_10 AC 100 ms
90,752 KB
testcase_11 AC 48 ms
69,760 KB
testcase_12 AC 84 ms
86,784 KB
testcase_13 AC 79 ms
86,656 KB
testcase_14 AC 55 ms
75,776 KB
testcase_15 AC 60 ms
79,232 KB
testcase_16 AC 47 ms
68,608 KB
testcase_17 AC 83 ms
88,304 KB
testcase_18 AC 53 ms
75,648 KB
testcase_19 AC 64 ms
80,384 KB
testcase_20 AC 109 ms
91,648 KB
testcase_21 AC 101 ms
91,856 KB
testcase_22 AC 100 ms
91,776 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