結果

問題 No.1338 Giant Class
ユーザー Pretender324Pretender324
提出日時 2021-01-15 22:02:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 208 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 840,064 KB
最終ジャッジ日時 2024-05-04 23:49:09
合計ジャッジ時間 5,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 286 ms
77,212 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 39 ms
53,248 KB
testcase_05 AC 44 ms
59,776 KB
testcase_06 AC 229 ms
145,280 KB
testcase_07 AC 286 ms
145,664 KB
testcase_08 AC 220 ms
98,688 KB
testcase_09 AC 189 ms
82,944 KB
testcase_10 AC 294 ms
99,072 KB
testcase_11 AC 107 ms
137,472 KB
testcase_12 AC 214 ms
76,544 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())
A = [H] * W
ans = H * W
for _ in range(Q):
    Y, X = map(int, input().split())
    ans -= A[X-1] - min(A[X - 1], Y - 1)
    A[X - 1] = min(A[X - 1], Y - 1)
    print(ans)
0