結果

問題 No.2329 Nafmo、イカサマをする
ユーザー redoCtAredoCtA
提出日時 2023-05-28 15:43:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,252 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,684 KB
最終ジャッジ日時 2024-06-08 08:20:39
合計ジャッジ時間 2,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 26 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 27 ms
10,880 KB
testcase_13 WA -
testcase_14 AC 26 ms
11,008 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 24 ms
10,880 KB
testcase_18 WA -
testcase_19 AC 53 ms
14,888 KB
testcase_20 AC 33 ms
11,904 KB
testcase_21 AC 52 ms
14,884 KB
testcase_22 AC 27 ms
11,136 KB
testcase_23 AC 26 ms
11,008 KB
testcase_24 AC 26 ms
10,880 KB
testcase_25 WA -
testcase_26 AC 26 ms
10,880 KB
testcase_27 AC 26 ms
10,624 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 33 ms
11,904 KB
testcase_30 AC 28 ms
11,008 KB
testcase_31 AC 25 ms
10,880 KB
testcase_32 AC 26 ms
10,880 KB
testcase_33 AC 26 ms
10,752 KB
testcase_34 AC 25 ms
10,880 KB
testcase_35 AC 27 ms
11,136 KB
testcase_36 AC 87 ms
19,628 KB
testcase_37 AC 28 ms
11,008 KB
testcase_38 AC 29 ms
11,520 KB
testcase_39 AC 159 ms
28,684 KB
testcase_40 AC 161 ms
28,392 KB
testcase_41 AC 183 ms
28,296 KB
testcase_42 AC 164 ms
28,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect
def main():
    N, M, K = map(int, input().split())
    *A, = map(int, input().split())
    A.sort()
    if A[0] > 0:
        A = [0]+A
        N += 1
    S = set()
    if K > 3:
        for i in range(N):
            for j in range(i, N):
                for k in range(j, N):
                    S.add(A[i]+A[j]+A[k])
        L = sorted(list(S))
    
        if K == 6:
            X = L.copy()
        elif K == 5:
            T = set()
            for i in range(N):
                for j in range(i, N):
                    T.add(A[i]+A[j])
            X = sorted(list(T))
        elif K == 4:
            X = A.copy()
        else:
            p = bisect(L, M)
            print(L[p-1])
            return
    else:
        if K == 1:
            p = bisect(A, M)
            print(A[p-1])
            return
        else:
            for i in range(N):
                for j in range(i, N):
                    S.add(A[i]+A[j])
            L = sorted(list(S))
            p = bisect(L, M)
            print(L[p-1])
            return
        
    ans = 0
    for l in L:
        if l > M:
            break
        p = bisect(X, M-l)
        ans = max(ans, l+X[p-1])
    print(ans)
if __name__ == "__main__":
    main()
0