結果

問題 No.2370 He ate many cakes
ユーザー titiatitia
提出日時 2023-07-04 05:20:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 697 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,292 KB
最終ジャッジ日時 2024-07-18 02:41:23
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,524 KB
testcase_03 AC 237 ms
76,936 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 153 ms
76,284 KB
testcase_11 AC 226 ms
77,124 KB
testcase_12 AC 146 ms
76,372 KB
testcase_13 AC 222 ms
76,940 KB
testcase_14 AC 216 ms
76,832 KB
testcase_15 AC 229 ms
77,292 KB
testcase_16 AC 156 ms
76,288 KB
testcase_17 AC 235 ms
77,056 KB
testcase_18 AC 53 ms
72,448 KB
testcase_19 AC 53 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import bisect_left

N,K=map(int,input().split())
A=list(map(int,input().split()))

if N==1:
    print(A[0])
    exit()

A.sort()

B=A[:N//2]
C=A[N//2:]

X=[0]

for b in B:
    Y=[]
    for x in X:
        Y.append(x+b)

    X=X+Y

X2=[0]
for b in C:
    Y=[]
    
    for x in X2:
        Y.append(x+b)

    X2=X2+Y

X.sort()
X2.sort()

OK=-40*10**9
NG=40*10**9

while OK<NG-1:
    mid=(OK+NG)//2

    count=0
    #count+=len(X2)-bisect_left(X2,mid)
    #count+=len(X)-bisect_left(X,mid)
    for x in X:
        count+=len(X2)-bisect_left(X2,mid-x)

    #print(mid,count)

    if count>=K:
        OK=mid
    else:
        NG=mid

print(OK)

    
0