結果

問題 No.1338 Giant Class
ユーザー yakeshibayakeshiba
提出日時 2021-06-06 22:33:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 232 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 840,576 KB
最終ジャッジ日時 2024-05-02 23:33:40
合計ジャッジ時間 7,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 317 ms
76,800 KB
testcase_03 AC 45 ms
52,352 KB
testcase_04 AC 48 ms
53,248 KB
testcase_05 AC 57 ms
59,776 KB
testcase_06 AC 322 ms
146,048 KB
testcase_07 AC 375 ms
146,176 KB
testcase_08 AC 256 ms
98,560 KB
testcase_09 AC 235 ms
82,432 KB
testcase_10 AC 352 ms
98,816 KB
testcase_11 AC 165 ms
136,960 KB
testcase_12 AC 261 ms
76,928 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())
occupied = [h]*w
ans = h*w
for _ in range(q):
    y, x = map(lambda x:int(x)-1,input().split())
    if y < occupied[x]:
        ans -= abs(occupied[x]-y)
        occupied[x] = y
    print(ans)
    
0