結果

問題 No.1338 Giant Class
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-01-15 21:39:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 216 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-05-04 23:03:11
合計ジャッジ時間 3,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
11,392 KB
testcase_01 AC 28 ms
11,392 KB
testcase_02 AC 601 ms
11,520 KB
testcase_03 AC 29 ms
11,392 KB
testcase_04 AC 29 ms
11,392 KB
testcase_05 AC 31 ms
11,392 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 529 ms
12,928 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
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())

lis = [h+1]*(10**5+10)

ans = h*w
for i in range(q):
    y,x = map(int,input().split())
    
    if y < lis[x]:
        ans -= lis[x] - y
        lis[x] = y
        
    print(ans)

0