結果

問題 No.1338 Giant Class
ユーザー titiatitia
提出日時 2021-01-15 21:37:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,144 KB
最終ジャッジ日時 2024-11-26 13:35:49
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 263 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 199 ms
17,276 KB
testcase_07 AC 275 ms
24,144 KB
testcase_08 AC 188 ms
17,476 KB
testcase_09 AC 180 ms
17,280 KB
testcase_10 AC 300 ms
23,852 KB
testcase_11 AC 54 ms
11,648 KB
testcase_12 AC 227 ms
17,276 KB
testcase_13 AC 187 ms
17,268 KB
testcase_14 AC 70 ms
12,292 KB
testcase_15 AC 92 ms
13,960 KB
testcase_16 AC 50 ms
11,520 KB
testcase_17 AC 187 ms
17,260 KB
testcase_18 AC 71 ms
12,288 KB
testcase_19 AC 104 ms
13,956 KB
testcase_20 AC 310 ms
23,848 KB
testcase_21 AC 302 ms
23,896 KB
testcase_22 AC 301 ms
23,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W,Q=map(int,input().split())

D=dict()
MINUS=0

for i in range(Q):
    y,x=map(int,input().split())

    if x in D:
        if y<D[x]:
            MINUS+=D[x]-y
            D[x]=y
    else:
        D[x]=y
        MINUS+=H-y+1

    print(H*W-MINUS)
    
0