結果

問題 No.2370 He ate many cakes
ユーザー 👑 rin204rin204
提出日時 2023-11-23 22:49:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 160,044 KB
最終ジャッジ日時 2024-09-26 08:22:10
合計ジャッジ時間 4,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 294 ms
159,616 KB
testcase_04 AC 45 ms
51,968 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
52,736 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 41 ms
52,484 KB
testcase_10 AC 251 ms
159,616 KB
testcase_11 AC 277 ms
160,044 KB
testcase_12 AC 293 ms
159,744 KB
testcase_13 AC 291 ms
159,872 KB
testcase_14 AC 311 ms
159,744 KB
testcase_15 AC 290 ms
159,744 KB
testcase_16 AC 261 ms
159,744 KB
testcase_17 AC 308 ms
159,872 KB
testcase_18 AC 57 ms
62,720 KB
testcase_19 AC 56 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n, k = map(int, input().split())
A = list(map(int, input().split()))
L = A[: n // 3]
R = A[n // 3 :]


def f(A):
    res = [0]
    for a in A:
        le = len(res)
        for i in range(le):
            res.append(res[i] + a)
    res.sort()
    return res


L = f(L)
R = f(R)
l = -1 << 60
r = 1 << 60
while r - l > 1:
    m = (l + r) // 2
    cnt = 0
    for a in L:
        cnt += len(R) - bisect_left(R, m - a)
    if cnt < k:
        r = m
    else:
        l = m

print(l)
0