結果

問題 No.1338 Giant Class
ユーザー ryuusagiryuusagi
提出日時 2021-01-15 22:04:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,364 KB
最終ジャッジ日時 2024-05-04 23:52:55
合計ジャッジ時間 6,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,328 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 281 ms
76,416 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 40 ms
53,248 KB
testcase_05 AC 45 ms
58,880 KB
testcase_06 AC 230 ms
82,484 KB
testcase_07 AC 296 ms
85,836 KB
testcase_08 AC 233 ms
82,720 KB
testcase_09 AC 210 ms
82,816 KB
testcase_10 AC 315 ms
86,364 KB
testcase_11 AC 101 ms
76,800 KB
testcase_12 AC 245 ms
81,024 KB
testcase_13 AC 207 ms
82,560 KB
testcase_14 AC 112 ms
77,312 KB
testcase_15 AC 130 ms
78,848 KB
testcase_16 AC 97 ms
76,160 KB
testcase_17 AC 214 ms
82,560 KB
testcase_18 AC 114 ms
77,056 KB
testcase_19 AC 137 ms
79,360 KB
testcase_20 AC 319 ms
85,340 KB
testcase_21 AC 317 ms
84,960 KB
testcase_22 AC 314 ms
85,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,q = map(int, input().split())
d={}
a=w*h
for _ in range(q):
    y, x = map(int, input().split())
    if x not in d:
        d[x]=y
        a=a-(h-d[x])-1
    elif y<d[x]:
        a=a-(d[x]-y)
        d[x]=y
    print(a)
0