結果

問題 No.1338 Giant Class
ユーザー H20H20
提出日時 2021-01-15 21:50:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 851,072 KB
最終ジャッジ日時 2024-11-26 14:10:24
合計ジャッジ時間 8,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 252 ms
145,664 KB
testcase_07 AC 312 ms
146,176 KB
testcase_08 AC 225 ms
98,432 KB
testcase_09 AC 211 ms
82,304 KB
testcase_10 AC 316 ms
98,864 KB
testcase_11 AC 121 ms
136,832 KB
testcase_12 AC 230 ms
76,800 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,Q = map(int, input().split())
L = [H]*W
ans = H*W
for i in range(Q):
    Y,X = map(int, input().split())
    if L[X-1]>Y:
        ans -= L[X-1]-Y+1
        L[X-1] = Y-1
    print(ans)
0