結果

問題 No.1338 Giant Class
ユーザー nephrologistnephrologist
提出日時 2021-01-15 22:08:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 392 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 840,320 KB
最終ジャッジ日時 2024-05-04 23:59:39
合計ジャッジ時間 5,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 261 ms
77,440 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 38 ms
53,492 KB
testcase_05 AC 45 ms
59,520 KB
testcase_06 AC 295 ms
146,304 KB
testcase_07 AC 384 ms
146,304 KB
testcase_08 AC 210 ms
98,564 KB
testcase_09 AC 211 ms
83,148 KB
testcase_10 AC 311 ms
99,456 KB
testcase_11 AC 133 ms
137,344 KB
testcase_12 AC 217 ms
77,184 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, q = map(int, input().split())

memo = [-1] * w
temp = 0
for _ in range(q):
    y, x = map(int, input().split())
    y, x = y - 1, x - 1
    pre = memo[x]
    if pre == -1:
        memo[x] = y
        temp += h - y
        print(h * w - temp)
        continue
    if pre < y:
        print(h * w - temp)
    else:
        memo[x] = y
        temp += pre - y
        print(h * w - temp)

0