結果

問題 No.2549 Paint Eggs
ユーザー NullzNullz
提出日時 2023-11-25 17:02:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 213,460 KB
最終ジャッジ日時 2024-09-26 10:57:21
合計ジャッジ時間 13,426 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 47 ms
64,680 KB
testcase_02 WA -
testcase_03 AC 46 ms
62,500 KB
testcase_04 AC 46 ms
63,588 KB
testcase_05 AC 44 ms
61,036 KB
testcase_06 WA -
testcase_07 AC 47 ms
63,832 KB
testcase_08 AC 40 ms
55,572 KB
testcase_09 AC 45 ms
64,020 KB
testcase_10 AC 251 ms
169,808 KB
testcase_11 AC 277 ms
202,220 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 210 ms
179,848 KB
testcase_15 AC 54 ms
73,864 KB
testcase_16 AC 266 ms
167,036 KB
testcase_17 AC 162 ms
126,884 KB
testcase_18 AC 126 ms
106,644 KB
testcase_19 AC 208 ms
150,988 KB
testcase_20 WA -
testcase_21 AC 351 ms
212,732 KB
testcase_22 AC 351 ms
212,732 KB
testcase_23 AC 356 ms
212,676 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 364 ms
212,608 KB
testcase_27 AC 356 ms
213,072 KB
testcase_28 AC 335 ms
211,772 KB
testcase_29 AC 347 ms
212,816 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 357 ms
212,952 KB
testcase_33 AC 355 ms
213,116 KB
testcase_34 AC 349 ms
212,536 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 374 ms
212,820 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 323 ms
211,844 KB
testcase_41 AC 321 ms
212,036 KB
testcase_42 AC 325 ms
211,540 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m, k = map(int, input().split())
c = [*map(int, input().split())]
a = [*map(int, input().split())]
b = [deque() for _ in range(m)]
ans = 10 ** 20
for i, v in enumerate(c):
    b[v - 1].append(i)
    if i >= k:
        if b[v - 1][0] <= i - k:
            b[v - 1].popleft()
    ans = min(ans, (k - len(b[v - 1])) * a[v - 1])
print(ans)
0