結果

問題 No.1338 Giant Class
ユーザー titiatitia
提出日時 2021-01-15 21:37:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,960 KB
最終ジャッジ日時 2024-05-04 22:59:14
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 231 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 175 ms
17,408 KB
testcase_07 AC 245 ms
23,864 KB
testcase_08 AC 169 ms
17,280 KB
testcase_09 AC 160 ms
17,272 KB
testcase_10 AC 279 ms
23,896 KB
testcase_11 AC 50 ms
11,648 KB
testcase_12 AC 213 ms
17,400 KB
testcase_13 AC 166 ms
17,392 KB
testcase_14 AC 66 ms
12,296 KB
testcase_15 AC 84 ms
13,960 KB
testcase_16 AC 46 ms
11,648 KB
testcase_17 AC 161 ms
17,264 KB
testcase_18 AC 65 ms
12,288 KB
testcase_19 AC 94 ms
14,084 KB
testcase_20 AC 280 ms
23,960 KB
testcase_21 AC 291 ms
23,848 KB
testcase_22 AC 272 ms
23,888 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