結果

問題 No.2329 Nafmo、イカサマをする
ユーザー rlangevinrlangevin
提出日時 2023-06-01 12:34:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 219,600 KB
最終ジャッジ日時 2024-06-08 21:35:59
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 66 ms
66,432 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 43 ms
52,096 KB
testcase_06 AC 43 ms
52,096 KB
testcase_07 AC 44 ms
52,352 KB
testcase_08 AC 86 ms
76,288 KB
testcase_09 AC 43 ms
52,352 KB
testcase_10 AC 44 ms
51,968 KB
testcase_11 AC 44 ms
52,480 KB
testcase_12 AC 49 ms
57,856 KB
testcase_13 AC 43 ms
51,968 KB
testcase_14 AC 42 ms
51,968 KB
testcase_15 AC 43 ms
52,352 KB
testcase_16 AC 56 ms
60,800 KB
testcase_17 AC 43 ms
52,480 KB
testcase_18 AC 50 ms
58,368 KB
testcase_19 AC 78 ms
74,624 KB
testcase_20 AC 100 ms
78,080 KB
testcase_21 AC 74 ms
73,344 KB
testcase_22 AC 93 ms
77,312 KB
testcase_23 AC 42 ms
52,480 KB
testcase_24 AC 43 ms
51,968 KB
testcase_25 AC 54 ms
60,672 KB
testcase_26 AC 43 ms
51,968 KB
testcase_27 AC 44 ms
52,224 KB
testcase_28 AC 43 ms
52,864 KB
testcase_29 AC 129 ms
78,720 KB
testcase_30 AC 56 ms
61,184 KB
testcase_31 AC 44 ms
52,096 KB
testcase_32 AC 67 ms
65,920 KB
testcase_33 AC 43 ms
52,608 KB
testcase_34 AC 44 ms
52,352 KB
testcase_35 AC 77 ms
76,032 KB
testcase_36 AC 408 ms
137,684 KB
testcase_37 AC 57 ms
62,464 KB
testcase_38 AC 44 ms
52,352 KB
testcase_39 AC 481 ms
153,968 KB
testcase_40 AC 86 ms
76,288 KB
testcase_41 AC 832 ms
219,600 KB
testcase_42 AC 87 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *

N, M, K = map(int, input().split())
A = list(map(int, input().split()))
X, Y = [], []
for i in range(K//2 + 1):
    for t in product(A, repeat=i):
        X.append(sum(t))

for i in range(K - K//2 + 1):
    for t in product(A, repeat=i):
        Y.append(sum(t))

Y.sort()
ans = 0
for x in X:
    ind = bisect_right(Y, M - x)
    if ind == 0:
        continue
    ans = max(ans, x + Y[ind - 1])

print(ans)
0