結果

問題 No.1338 Giant Class
ユーザー gorugo30gorugo30
提出日時 2021-01-15 21:58:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 85,100 KB
最終ジャッジ日時 2024-05-04 23:44:09
合計ジャッジ時間 6,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 296 ms
76,416 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 44 ms
53,504 KB
testcase_05 AC 50 ms
59,520 KB
testcase_06 AC 244 ms
82,360 KB
testcase_07 AC 321 ms
85,100 KB
testcase_08 AC 239 ms
82,360 KB
testcase_09 AC 226 ms
82,816 KB
testcase_10 AC 348 ms
84,712 KB
testcase_11 AC 101 ms
76,672 KB
testcase_12 AC 261 ms
81,024 KB
testcase_13 AC 229 ms
82,660 KB
testcase_14 AC 118 ms
77,440 KB
testcase_15 AC 137 ms
78,592 KB
testcase_16 AC 101 ms
76,672 KB
testcase_17 AC 232 ms
82,532 KB
testcase_18 AC 120 ms
77,056 KB
testcase_19 AC 148 ms
79,360 KB
testcase_20 AC 343 ms
84,600 KB
testcase_21 AC 338 ms
84,596 KB
testcase_22 AC 352 ms
84,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, Q = map(int, input().split())
ans = H * W
giant = {}
from bisect import bisect
for i in range(Q):
    y, x = map(int, input().split())
    if giant.get(x, -1) == -1:
        giant[x] = y
        ans -= H + 1 - y
    else:
        if giant[x] > y:
            ans -= giant[x] - y
            giant[x] = y
    print(ans)
0