結果

問題 No.2549 Paint Eggs
ユーザー titiatitia
提出日時 2023-11-29 01:47:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 379 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-09-26 13:14:22
合計ジャッジ時間 18,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 RE -
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,880 KB
testcase_07 WA -
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 415 ms
38,304 KB
testcase_11 RE -
testcase_12 AC 334 ms
29,456 KB
testcase_13 AC 381 ms
37,220 KB
testcase_14 RE -
testcase_15 AC 52 ms
12,672 KB
testcase_16 AC 325 ms
35,544 KB
testcase_17 AC 267 ms
26,700 KB
testcase_18 AC 213 ms
25,872 KB
testcase_19 AC 301 ms
28,392 KB
testcase_20 AC 513 ms
40,724 KB
testcase_21 WA -
testcase_22 AC 525 ms
40,848 KB
testcase_23 WA -
testcase_24 AC 551 ms
40,760 KB
testcase_25 AC 425 ms
40,704 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 511 ms
40,704 KB
testcase_30 AC 540 ms
41,556 KB
testcase_31 AC 467 ms
40,708 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 455 ms
40,852 KB
testcase_35 AC 550 ms
40,724 KB
testcase_36 AC 521 ms
40,836 KB
testcase_37 WA -
testcase_38 AC 476 ms
40,696 KB
testcase_39 AC 479 ms
40,848 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 523 ms
40,848 KB
testcase_44 AC 547 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N,M,K=map(int,input().split())
B=list(map(int,input().split()))
A=list(map(int,input().split()))

MAX=[0]*(M+1)

C=Counter()
for i in range(K):
    C[B[i]]+=1

for c in C:
    MAX[c]=C[c]

for i in range(K,N):
    C[B[i]]+=1
    C[B[i-M]]-=1

    MAX[B[i]]=C[B[i]]

ANS=1<<60

for i in range(1,M+1):
    ANS=min(ANS,(K-MAX[i])*A[i-1])

print(ANS)
0