結果

問題 No.2329 Nafmo、イカサマをする
ユーザー kemunikukemuniku
提出日時 2023-05-28 15:19:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 270,352 KB
最終ジャッジ日時 2024-06-08 07:31:29
合計ジャッジ時間 8,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,344 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 WA -
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 33 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 34 ms
52,096 KB
testcase_11 AC 33 ms
51,712 KB
testcase_12 AC 33 ms
52,096 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 33 ms
51,968 KB
testcase_15 WA -
testcase_16 AC 38 ms
58,240 KB
testcase_17 AC 33 ms
52,096 KB
testcase_18 AC 33 ms
51,968 KB
testcase_19 AC 51 ms
64,256 KB
testcase_20 AC 110 ms
84,608 KB
testcase_21 AC 45 ms
60,288 KB
testcase_22 WA -
testcase_23 AC 35 ms
51,712 KB
testcase_24 WA -
testcase_25 AC 37 ms
58,112 KB
testcase_26 WA -
testcase_27 AC 35 ms
51,968 KB
testcase_28 AC 34 ms
51,968 KB
testcase_29 AC 141 ms
105,472 KB
testcase_30 AC 37 ms
52,608 KB
testcase_31 WA -
testcase_32 AC 40 ms
59,136 KB
testcase_33 AC 33 ms
51,712 KB
testcase_34 AC 33 ms
52,224 KB
testcase_35 WA -
testcase_36 TLE -
testcase_37 AC 43 ms
58,240 KB
testcase_38 AC 35 ms
52,480 KB
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,M,K = map(int,input().split())
A = list(map(int,input().split()))
A.append(0)
x = K//2
y = K-x
old = A[:]
for i in range(x-1):
    new = set()
    for i in range(len(old)):
        for j in range(len(old)):
            new.add(old[i]+old[j])
    old = list(new)
one = old
old = A[:]
for i in range(y-1):
    new = set()
    for i in range(len(old)):
        for j in range(len(old)):
            new.add(old[i]+old[j])
    old = list(new)
two = old
one.sort()
two.sort()
ans = 0
for i in one:
    if M-i >= 0:
        index = bisect.bisect_right(two,M-i)-1
        if index != len(two):
            if two[index] + i <= M:
                ans = max(ans,two[index] + i)
print(ans)
0