結果

問題 No.2549 Paint Eggs
ユーザー rlangevinrlangevin
提出日時 2023-12-12 08:52:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 112,740 KB
最終ジャッジ日時 2024-09-27 04:51:14
合計ジャッジ時間 7,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,112 KB
testcase_01 AC 47 ms
59,264 KB
testcase_02 AC 44 ms
58,624 KB
testcase_03 AC 46 ms
59,776 KB
testcase_04 AC 47 ms
60,032 KB
testcase_05 AC 45 ms
58,112 KB
testcase_06 AC 46 ms
59,136 KB
testcase_07 AC 50 ms
61,056 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 47 ms
59,520 KB
testcase_10 AC 127 ms
106,112 KB
testcase_11 AC 117 ms
106,552 KB
testcase_12 AC 110 ms
106,496 KB
testcase_13 AC 121 ms
105,984 KB
testcase_14 AC 103 ms
99,456 KB
testcase_15 AC 57 ms
66,816 KB
testcase_16 AC 121 ms
105,344 KB
testcase_17 AC 104 ms
104,320 KB
testcase_18 AC 100 ms
102,528 KB
testcase_19 AC 111 ms
103,808 KB
testcase_20 AC 143 ms
112,560 KB
testcase_21 AC 142 ms
111,920 KB
testcase_22 AC 138 ms
112,432 KB
testcase_23 AC 143 ms
111,792 KB
testcase_24 AC 145 ms
112,044 KB
testcase_25 AC 140 ms
112,432 KB
testcase_26 AC 141 ms
112,432 KB
testcase_27 AC 140 ms
112,044 KB
testcase_28 AC 143 ms
112,308 KB
testcase_29 AC 142 ms
112,444 KB
testcase_30 AC 141 ms
112,300 KB
testcase_31 AC 136 ms
112,300 KB
testcase_32 AC 142 ms
112,308 KB
testcase_33 AC 144 ms
112,740 KB
testcase_34 AC 142 ms
111,668 KB
testcase_35 AC 141 ms
112,308 KB
testcase_36 AC 143 ms
112,436 KB
testcase_37 AC 143 ms
112,168 KB
testcase_38 AC 140 ms
111,920 KB
testcase_39 AC 140 ms
112,428 KB
testcase_40 AC 142 ms
112,436 KB
testcase_41 AC 135 ms
112,052 KB
testcase_42 AC 136 ms
111,928 KB
testcase_43 AC 136 ms
112,052 KB
testcase_44 AC 138 ms
111,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
C = list(map(int, input().split()))
A = list(map(int, input().split()))
ans = min(A) * K
cnt = [0] * (M + 1)
for i in range(N):
    cnt[C[i]] += 1
    if i >= K:
        cnt[C[i-K]] -= 1
    ans = min(ans, (K - cnt[C[i]]) * A[C[i] - 1])

print(ans)
0