結果

問題 No.1338 Giant Class
ユーザー ryuusagiryuusagi
提出日時 2021-01-15 22:04:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 86,116 KB
最終ジャッジ日時 2024-11-26 14:50:25
合計ジャッジ時間 6,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,072 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 278 ms
76,544 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 41 ms
53,120 KB
testcase_05 AC 49 ms
59,392 KB
testcase_06 AC 228 ms
82,460 KB
testcase_07 AC 293 ms
85,708 KB
testcase_08 AC 223 ms
82,596 KB
testcase_09 AC 214 ms
82,688 KB
testcase_10 AC 322 ms
86,116 KB
testcase_11 AC 102 ms
76,544 KB
testcase_12 AC 249 ms
80,640 KB
testcase_13 AC 219 ms
82,560 KB
testcase_14 AC 116 ms
77,312 KB
testcase_15 AC 133 ms
78,720 KB
testcase_16 AC 97 ms
75,648 KB
testcase_17 AC 216 ms
82,048 KB
testcase_18 AC 114 ms
77,056 KB
testcase_19 AC 143 ms
78,976 KB
testcase_20 AC 334 ms
85,080 KB
testcase_21 AC 313 ms
85,092 KB
testcase_22 AC 313 ms
84,688 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