結果

問題 No.1338 Giant Class
コンテスト
ユーザー nephrologist
提出日時 2021-01-15 22:08:17
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
RE  
実行時間 -
コード長 392 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,117 ms
コンパイル使用メモリ 85,120 KB
実行使用メモリ 1,331,968 KB
最終ジャッジ日時 2026-05-21 01:39:22
合計ジャッジ時間 7,551 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11 RE * 1 MLE * 3 -- * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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