結果

問題 No.2329 Nafmo、イカサマをする
ユーザー Akijin_007Akijin_007
提出日時 2023-09-01 14:04:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 101,824 KB
最終ジャッジ日時 2024-06-11 02:30:36
合計ジャッジ時間 4,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 51 ms
61,056 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 37 ms
52,864 KB
testcase_05 AC 36 ms
52,992 KB
testcase_06 AC 42 ms
58,624 KB
testcase_07 AC 36 ms
52,488 KB
testcase_08 AC 61 ms
71,040 KB
testcase_09 AC 48 ms
60,928 KB
testcase_10 AC 44 ms
52,076 KB
testcase_11 AC 52 ms
62,624 KB
testcase_12 AC 48 ms
63,232 KB
testcase_13 AC 48 ms
63,104 KB
testcase_14 AC 39 ms
52,736 KB
testcase_15 AC 36 ms
51,968 KB
testcase_16 AC 49 ms
61,184 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 62 ms
75,776 KB
testcase_19 AC 109 ms
79,052 KB
testcase_20 AC 80 ms
76,656 KB
testcase_21 AC 111 ms
79,360 KB
testcase_22 AC 68 ms
76,004 KB
testcase_23 AC 49 ms
63,488 KB
testcase_24 AC 37 ms
52,480 KB
testcase_25 AC 71 ms
75,896 KB
testcase_26 AC 36 ms
51,968 KB
testcase_27 AC 47 ms
61,696 KB
testcase_28 AC 49 ms
58,368 KB
testcase_29 AC 82 ms
76,636 KB
testcase_30 AC 62 ms
75,772 KB
testcase_31 AC 36 ms
51,968 KB
testcase_32 AC 49 ms
62,208 KB
testcase_33 AC 46 ms
61,312 KB
testcase_34 AC 45 ms
61,696 KB
testcase_35 AC 64 ms
75,776 KB
testcase_36 AC 176 ms
86,472 KB
testcase_37 AC 82 ms
75,556 KB
testcase_38 AC 53 ms
68,164 KB
testcase_39 AC 307 ms
101,300 KB
testcase_40 AC 295 ms
101,816 KB
testcase_41 AC 330 ms
101,552 KB
testcase_42 AC 295 ms
101,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

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

from itertools import product
from bisect import bisect_right

ans = 0

if 1 <= K <= 3:
    for i in range(K):
        for x in product(A, repeat=i+1):
            s = sum(x)
            if s <= M:
                ans = max(ans, s)
else:
    A.append(0)
    s2 = set()
    s3 = set()
    for i in range(3):
        for x in product(A, repeat=i+1):
            s = sum(x)
            if i < 2:
                s2.add(s)
            if i < 3:
                s3.add(s)

    if K == 4:
        u = A
    elif K == 5:
        u = s2
    else:
        u = s3

    s3 = sorted(s3)
    for x in u:
        t = bisect_right(s3, M-x)
        if t != 0:
            ans = max(ans, x+s3[t-1])

print(ans)




0