結果

問題 No.1338 Giant Class
ユーザー Kiri8128Kiri8128
提出日時 2021-01-15 23:01:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 817,792 KB
最終ジャッジ日時 2024-05-05 00:59:21
合計ジャッジ時間 4,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 623 ms
11,648 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 MLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, Q = map(int, input().split())
A = [W] * H
s = H * W
for _ in range(Q):
    i, j = [int(a) - 1 for a in input().split()]
    if i < A[j]:
        s -= A[j] - i
        A[j] = i
    print(s)
0