結果

問題 No.1338 Giant Class
ユーザー Akijin_007Akijin_007
提出日時 2023-05-11 19:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 98,260 KB
最終ジャッジ日時 2024-11-27 16:03:53
合計ジャッジ時間 5,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 200 ms
86,640 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 43 ms
53,248 KB
testcase_05 AC 48 ms
59,520 KB
testcase_06 AC 158 ms
92,688 KB
testcase_07 AC 192 ms
98,140 KB
testcase_08 AC 155 ms
91,512 KB
testcase_09 AC 151 ms
90,236 KB
testcase_10 AC 189 ms
96,704 KB
testcase_11 AC 76 ms
77,760 KB
testcase_12 AC 144 ms
90,904 KB
testcase_13 AC 125 ms
90,512 KB
testcase_14 AC 82 ms
78,336 KB
testcase_15 AC 100 ms
81,280 KB
testcase_16 AC 85 ms
76,832 KB
testcase_17 AC 145 ms
91,332 KB
testcase_18 AC 95 ms
78,080 KB
testcase_19 AC 110 ms
81,740 KB
testcase_20 AC 220 ms
98,084 KB
testcase_21 AC 217 ms
98,144 KB
testcase_22 AC 176 ms
98,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

H, W, Q = map(int, input().split())

z = [0] * Q
for i in range(Q):
    z[i] = list(map(int, input().split()))


ans = H*W
d = dict()

for i in range(Q):
    y, x = z[i]
    if x not in d:
        ans -= H - y + 1
        d[x] = y
    else:
        ans -= d[x] - min(d[x], y)
        d[x] = min(d[x], y)

    print(ans)

0