結果

問題 No.1338 Giant Class
ユーザー gorugo30gorugo30
提出日時 2021-01-15 21:58:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 85,084 KB
最終ジャッジ日時 2024-11-26 14:37:51
合計ジャッジ時間 6,309 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,332 KB
testcase_01 AC 40 ms
53,080 KB
testcase_02 AC 293 ms
76,444 KB
testcase_03 AC 42 ms
53,916 KB
testcase_04 AC 45 ms
53,752 KB
testcase_05 AC 51 ms
60,808 KB
testcase_06 AC 245 ms
82,488 KB
testcase_07 AC 315 ms
85,084 KB
testcase_08 AC 231 ms
82,456 KB
testcase_09 AC 219 ms
83,012 KB
testcase_10 AC 338 ms
84,588 KB
testcase_11 AC 100 ms
76,864 KB
testcase_12 AC 262 ms
80,920 KB
testcase_13 AC 227 ms
82,656 KB
testcase_14 AC 116 ms
77,468 KB
testcase_15 AC 134 ms
78,760 KB
testcase_16 AC 97 ms
76,376 KB
testcase_17 AC 229 ms
82,824 KB
testcase_18 AC 116 ms
77,680 KB
testcase_19 AC 145 ms
79,436 KB
testcase_20 AC 338 ms
84,584 KB
testcase_21 AC 339 ms
84,732 KB
testcase_22 AC 328 ms
84,604 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