結果

問題 No.2549 Paint Eggs
ユーザー KudeKude
提出日時 2023-11-25 13:10:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 122,332 KB
最終ジャッジ日時 2024-09-26 10:22:35
合計ジャッジ時間 11,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 48 ms
60,288 KB
testcase_02 WA -
testcase_03 AC 50 ms
61,568 KB
testcase_04 AC 49 ms
61,568 KB
testcase_05 AC 42 ms
53,120 KB
testcase_06 WA -
testcase_07 AC 55 ms
62,720 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 50 ms
61,696 KB
testcase_10 AC 204 ms
118,888 KB
testcase_11 AC 172 ms
119,648 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 133 ms
100,120 KB
testcase_15 AC 90 ms
76,928 KB
testcase_16 AC 202 ms
111,880 KB
testcase_17 AC 134 ms
93,568 KB
testcase_18 AC 122 ms
91,904 KB
testcase_19 AC 159 ms
105,488 KB
testcase_20 WA -
testcase_21 AC 228 ms
121,572 KB
testcase_22 AC 242 ms
120,924 KB
testcase_23 AC 232 ms
120,544 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 233 ms
119,140 KB
testcase_27 AC 230 ms
121,180 KB
testcase_28 AC 231 ms
120,676 KB
testcase_29 AC 237 ms
121,560 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 229 ms
120,552 KB
testcase_33 AC 224 ms
120,796 KB
testcase_34 AC 232 ms
120,288 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 227 ms
121,064 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 219 ms
121,060 KB
testcase_41 AC 224 ms
120,284 KB
testcase_42 AC 220 ms
121,824 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
c = [[] for _ in range(m)]
for i, x in enumerate(map(int, input().split())):
    c[x - 1].append(i)
ans = 10 ** 9 * k
for x, indices in zip(map(int, input().split()), c):
    j = 0
    for i in range(len(indices)):
        while j < len(indices) and indices[j] - indices[i] < k:
            j += 1
        ans = min(ans, (k - (j - i)) * x)

print(ans)
0