結果

問題 No.2329 Nafmo、イカサマをする
ユーザー lloyzlloyz
提出日時 2023-09-15 23:23:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 139,424 KB
最終ジャッジ日時 2024-07-03 00:40:18
合計ジャッジ時間 3,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,696 KB
testcase_01 AC 40 ms
51,996 KB
testcase_02 AC 39 ms
52,748 KB
testcase_03 AC 40 ms
52,596 KB
testcase_04 AC 39 ms
52,568 KB
testcase_05 AC 39 ms
52,316 KB
testcase_06 AC 39 ms
53,696 KB
testcase_07 AC 38 ms
52,712 KB
testcase_08 AC 57 ms
66,276 KB
testcase_09 AC 38 ms
52,956 KB
testcase_10 AC 40 ms
53,084 KB
testcase_11 AC 39 ms
52,928 KB
testcase_12 AC 39 ms
53,220 KB
testcase_13 AC 40 ms
52,632 KB
testcase_14 AC 39 ms
52,840 KB
testcase_15 AC 39 ms
52,756 KB
testcase_16 AC 39 ms
53,028 KB
testcase_17 AC 39 ms
52,692 KB
testcase_18 AC 40 ms
53,556 KB
testcase_19 AC 54 ms
64,492 KB
testcase_20 AC 52 ms
63,664 KB
testcase_21 AC 47 ms
60,388 KB
testcase_22 AC 51 ms
63,908 KB
testcase_23 AC 39 ms
52,748 KB
testcase_24 AC 38 ms
53,372 KB
testcase_25 AC 41 ms
58,720 KB
testcase_26 AC 39 ms
53,156 KB
testcase_27 AC 38 ms
52,360 KB
testcase_28 AC 38 ms
52,332 KB
testcase_29 AC 60 ms
69,432 KB
testcase_30 AC 40 ms
52,096 KB
testcase_31 AC 40 ms
51,712 KB
testcase_32 AC 41 ms
52,224 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 40 ms
52,480 KB
testcase_35 AC 49 ms
61,312 KB
testcase_36 AC 122 ms
104,320 KB
testcase_37 AC 42 ms
60,680 KB
testcase_38 AC 39 ms
53,080 KB
testcase_39 AC 122 ms
99,740 KB
testcase_40 AC 55 ms
67,024 KB
testcase_41 AC 211 ms
139,424 KB
testcase_42 AC 56 ms
67,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

n, m, k = map(int, input().split())
A = list(map(int, input().split()))

A.sort()
A = [0] + A
k1 = k // 2
B1 = set([0])
for _ in range(k1):
    NB1 = set()
    for b in B1:
        for a in A:
            NB1.add(b + a)
    B1 = NB1
k2 = k - k1
B2 = set([0])
for _ in range(k2):
    NB2 = set()
    for b in B2:
        for a in A:
            NB2.add(b + a)
    B2 = NB2

B1 = sorted(B1)
B2 = sorted(B2)
nn = len(B1)
ans = 0
for i in range(nn):
    res = m - B1[i]
    if res < 0:
        break
    idx = bisect_right(B2, res)
    ans = max(ans, B1[i] + B2[idx - 1])
print(ans)
0