結果

問題 No.1338 Giant Class
ユーザー convexineqconvexineq
提出日時 2021-01-15 21:36:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 185 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 841,080 KB
最終ジャッジ日時 2024-05-04 22:55:56
合計ジャッジ時間 5,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 122 ms
113,024 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
52,812 KB
testcase_06 AC 129 ms
168,192 KB
testcase_07 AC 151 ms
179,200 KB
testcase_08 AC 113 ms
120,500 KB
testcase_09 AC 103 ms
102,528 KB
testcase_10 AC 142 ms
136,576 KB
testcase_11 AC 80 ms
129,280 KB
testcase_12 AC 110 ms
102,144 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,*xy = map(int,open(0).read().split())
s = [h]*w
ans = h*w
for i in range(q):
    y,x = xy[i*2]-1,xy[i*2+1]-1
    if s[x] > y:
        ans -= s[x]-y
        s[x] = y
    print(ans)
0