結果

問題 No.1338 Giant Class
ユーザー Pretender324Pretender324
提出日時 2021-01-15 22:02:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 208 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 844,484 KB
最終ジャッジ日時 2024-11-26 14:43:40
合計ジャッジ時間 7,613 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,124 KB
testcase_01 AC 38 ms
52,192 KB
testcase_02 AC 287 ms
76,760 KB
testcase_03 AC 40 ms
53,544 KB
testcase_04 AC 43 ms
53,840 KB
testcase_05 AC 50 ms
59,584 KB
testcase_06 AC 255 ms
145,616 KB
testcase_07 AC 319 ms
146,080 KB
testcase_08 AC 226 ms
98,828 KB
testcase_09 AC 211 ms
83,048 KB
testcase_10 AC 321 ms
99,064 KB
testcase_11 AC 120 ms
137,112 KB
testcase_12 AC 243 ms
76,840 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())
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