結果

問題 No.1338 Giant Class
ユーザー lloyzlloyz
提出日時 2022-06-05 01:25:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 86,448 KB
最終ジャッジ日時 2024-09-21 03:54:17
合計ジャッジ時間 4,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 42 ms
53,356 KB
testcase_02 AC 108 ms
76,928 KB
testcase_03 AC 41 ms
53,816 KB
testcase_04 AC 42 ms
54,016 KB
testcase_05 AC 45 ms
54,784 KB
testcase_06 AC 128 ms
83,424 KB
testcase_07 AC 149 ms
84,956 KB
testcase_08 AC 115 ms
83,120 KB
testcase_09 AC 123 ms
81,972 KB
testcase_10 AC 154 ms
86,312 KB
testcase_11 AC 85 ms
77,056 KB
testcase_12 AC 123 ms
81,112 KB
testcase_13 AC 119 ms
83,040 KB
testcase_14 AC 76 ms
77,184 KB
testcase_15 AC 97 ms
79,524 KB
testcase_16 AC 65 ms
72,192 KB
testcase_17 AC 120 ms
82,760 KB
testcase_18 AC 77 ms
77,568 KB
testcase_19 AC 83 ms
79,104 KB
testcase_20 AC 160 ms
86,232 KB
testcase_21 AC 157 ms
86,448 KB
testcase_22 AC 156 ms
86,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline

h, w, q = map(int, input().split())
ans = h * w
N = defaultdict(int)
for _ in range(q):
    y, x = map(int, input().split())
    prev = N[x]
    curr = h - y + 1
    if curr > prev:
        dif = curr - prev
        ans -= dif
        N[x] = curr
    print(ans)
0