結果

問題 No.1338 Giant Class
ユーザー lloyzlloyz
提出日時 2022-06-05 01:22:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 317 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 850,492 KB
最終ジャッジ日時 2024-09-21 03:54:11
合計ジャッジ時間 4,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 105 ms
76,928 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 40 ms
53,248 KB
testcase_06 AC 160 ms
145,836 KB
testcase_07 AC 184 ms
146,368 KB
testcase_08 AC 111 ms
98,412 KB
testcase_09 AC 107 ms
82,912 KB
testcase_10 AC 141 ms
99,376 KB
testcase_11 AC 122 ms
136,960 KB
testcase_12 AC 92 ms
76,876 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

h, w, q = map(int, input().split())
ans = h * w
N = [0 for _ in range(w)]
for _ in range(q):
    y, x = map(int, input().split())
    x -= 1
    prev = N[x]
    curr = h - y + 1
    if curr > prev:
        dif = curr - prev
        ans -= dif
        N[x] = curr
    print(ans)
0