結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー convexineqconvexineq
提出日時 2021-02-12 06:09:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 3,000 ms
コード長 453 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 94,912 KB
最終ジャッジ日時 2024-07-18 15:53:57
合計ジャッジ時間 2,123 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,764 KB
testcase_01 AC 30 ms
52,308 KB
testcase_02 AC 32 ms
53,316 KB
testcase_03 AC 31 ms
52,212 KB
testcase_04 AC 32 ms
52,272 KB
testcase_05 AC 31 ms
52,808 KB
testcase_06 AC 31 ms
53,364 KB
testcase_07 AC 94 ms
94,344 KB
testcase_08 AC 80 ms
88,420 KB
testcase_09 AC 70 ms
89,440 KB
testcase_10 AC 79 ms
92,128 KB
testcase_11 AC 85 ms
92,120 KB
testcase_12 AC 71 ms
90,588 KB
testcase_13 AC 97 ms
94,912 KB
testcase_14 AC 84 ms
88,392 KB
testcase_15 AC 95 ms
93,092 KB
testcase_16 AC 83 ms
90,140 KB
testcase_17 AC 31 ms
52,004 KB
testcase_18 AC 30 ms
52,308 KB
testcase_19 AC 31 ms
52,748 KB
testcase_20 AC 32 ms
52,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(x):
    v = k+a[x]
    c = 1
    i = 0
    for j in range(n-2,-1,-1):
        if j==x: continue
        while i < n-1 and a[i] + a[j] <= v:
            i += 1
        if i==x: i+=1
        if i >= j: break
        c += 1
        i += 1
    return c <= m
    
    
n,m,k,*a = map(int,open(0).read().split())
a.sort()
ng = -1
ok = n-1
while ok-ng > 1:
    mid = (ok+ng)//2
    if check(mid): ok = mid
    else: ng = mid
a.append(-1)
print(a[ok])
0