結果

問題 No.1338 Giant Class
ユーザー Akijin_007Akijin_007
提出日時 2023-05-11 19:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,648 KB
最終ジャッジ日時 2024-05-05 16:49:52
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 168 ms
87,036 KB
testcase_03 AC 36 ms
52,864 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 46 ms
59,904 KB
testcase_06 AC 156 ms
92,732 KB
testcase_07 AC 176 ms
97,940 KB
testcase_08 AC 144 ms
91,692 KB
testcase_09 AC 143 ms
90,256 KB
testcase_10 AC 190 ms
96,780 KB
testcase_11 AC 92 ms
77,440 KB
testcase_12 AC 160 ms
91,160 KB
testcase_13 AC 148 ms
90,632 KB
testcase_14 AC 96 ms
78,720 KB
testcase_15 AC 104 ms
81,152 KB
testcase_16 AC 87 ms
77,184 KB
testcase_17 AC 146 ms
91,788 KB
testcase_18 AC 97 ms
78,464 KB
testcase_19 AC 107 ms
82,048 KB
testcase_20 AC 187 ms
98,264 KB
testcase_21 AC 185 ms
98,648 KB
testcase_22 AC 189 ms
98,516 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