結果

問題 No.1338 Giant Class
ユーザー kozykozy
提出日時 2021-01-15 21:52:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,112 KB
最終ジャッジ日時 2024-05-04 23:30:30
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 269 ms
76,416 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 37 ms
53,120 KB
testcase_05 AC 43 ms
59,008 KB
testcase_06 AC 213 ms
82,736 KB
testcase_07 AC 270 ms
85,836 KB
testcase_08 AC 231 ms
82,720 KB
testcase_09 AC 232 ms
82,944 KB
testcase_10 AC 296 ms
86,112 KB
testcase_11 AC 95 ms
76,544 KB
testcase_12 AC 249 ms
80,844 KB
testcase_13 AC 209 ms
82,688 KB
testcase_14 AC 117 ms
77,184 KB
testcase_15 AC 123 ms
78,464 KB
testcase_16 AC 86 ms
76,288 KB
testcase_17 AC 203 ms
82,432 KB
testcase_18 AC 102 ms
77,184 KB
testcase_19 AC 129 ms
79,348 KB
testcase_20 AC 293 ms
85,468 KB
testcase_21 AC 296 ms
85,336 KB
testcase_22 AC 294 ms
85,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,Q=map(int,input().split())
c=dict()
ans=H*W
for i in range(Q):
    Y,X=map(int,input().split())
    if X-1 in c:
        if c[X-1]>Y:
            ans-=c[X-1]-Y
            c[X-1]=Y
    else:
        ans-=H+1-Y
        c[X-1]=Y
    print(ans)
0