結果

問題 No.2329 Nafmo、イカサマをする
ユーザー googol_S0googol_S0
提出日時 2023-05-28 13:45:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,728 KB
最終ジャッジ日時 2024-06-08 04:06:05
合計ジャッジ時間 4,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 50 ms
59,136 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 89 ms
75,776 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 43 ms
52,352 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 44 ms
57,216 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 55 ms
62,976 KB
testcase_17 AC 42 ms
51,712 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 65 ms
66,944 KB
testcase_20 AC 61 ms
65,408 KB
testcase_21 AC 52 ms
60,160 KB
testcase_22 AC 72 ms
68,992 KB
testcase_23 AC 41 ms
52,096 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 53 ms
60,928 KB
testcase_26 AC 42 ms
52,096 KB
testcase_27 AC 42 ms
51,968 KB
testcase_28 AC 41 ms
51,712 KB
testcase_29 AC 99 ms
77,184 KB
testcase_30 AC 47 ms
58,496 KB
testcase_31 AC 42 ms
52,096 KB
testcase_32 AC 49 ms
58,752 KB
testcase_33 AC 42 ms
51,840 KB
testcase_34 AC 41 ms
52,096 KB
testcase_35 AC 68 ms
68,608 KB
testcase_36 AC 139 ms
79,744 KB
testcase_37 AC 59 ms
63,232 KB
testcase_38 AC 41 ms
52,096 KB
testcase_39 AC 131 ms
82,816 KB
testcase_40 AC 73 ms
70,912 KB
testcase_41 AC 366 ms
115,728 KB
testcase_42 AC 71 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
A=list(map(int,input().split()))
A.append(0)
N+=1
P=(K+1)>>1
Q=K>>1
X=[]
Y=[]
def p(x,i):
    if i==P:
        if x<=M:
            X.append(x)
    else:
        for j in range(N):
            p(x+A[j],i+1)

def q(x,i):
    if i==Q:
        if x<=M:
            Y.append(x)
    else:
        for j in range(N):
            q(x+A[j],i+1)

p(0,0)
q(0,0)
X.sort()
Y.sort()
Y.append(M+3)
from bisect import *
ANS=0
for i in range(len(X)):
    v=bisect_right(Y,M-X[i])
    ANS=max(ANS,Y[v-1]+X[i])
print(ANS)
0