結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,960 KB
testcase_01 AC 46 ms
307,260 KB
testcase_02 AC 40 ms
57,216 KB
testcase_03 WA -
testcase_04 AC 47 ms
57,344 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 43 ms
51,840 KB
testcase_08 WA -
testcase_09 AC 46 ms
52,224 KB
testcase_10 AC 43 ms
51,840 KB
testcase_11 AC 42 ms
52,352 KB
testcase_12 AC 45 ms
51,840 KB
testcase_13 AC 42 ms
51,712 KB
testcase_14 AC 40 ms
51,840 KB
testcase_15 WA -
testcase_16 AC 46 ms
57,984 KB
testcase_17 AC 45 ms
51,712 KB
testcase_18 AC 43 ms
52,096 KB
testcase_19 AC 65 ms
64,640 KB
testcase_20 AC 141 ms
83,840 KB
testcase_21 AC 58 ms
60,416 KB
testcase_22 WA -
testcase_23 AC 44 ms
51,840 KB
testcase_24 WA -
testcase_25 AC 49 ms
57,984 KB
testcase_26 WA -
testcase_27 AC 44 ms
51,840 KB
testcase_28 AC 44 ms
51,712 KB
testcase_29 AC 178 ms
105,216 KB
testcase_30 AC 47 ms
52,096 KB
testcase_31 WA -
testcase_32 AC 54 ms
58,752 KB
testcase_33 AC 45 ms
52,096 KB
testcase_34 AC 47 ms
51,968 KB
testcase_35 WA -
testcase_36 TLE -
testcase_37 AC 52 ms
58,240 KB
testcase_38 AC 48 ms
52,224 KB
testcase_39 TLE -
testcase_40 AC 68 ms
67,584 KB
testcase_41 TLE -
testcase_42 AC 72 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

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