結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー るこーそーるこーそー
提出日時 2024-09-20 09:14:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 3,000 ms
コード長 540 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-09-20 09:14:36
合計ジャッジ時間 3,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 138 ms
80,000 KB
testcase_08 AC 124 ms
80,008 KB
testcase_09 AC 113 ms
79,104 KB
testcase_10 AC 118 ms
78,976 KB
testcase_11 AC 133 ms
78,976 KB
testcase_12 AC 129 ms
79,740 KB
testcase_13 AC 135 ms
80,128 KB
testcase_14 AC 133 ms
79,616 KB
testcase_15 AC 133 ms
79,660 KB
testcase_16 AC 128 ms
80,000 KB
testcase_17 AC 39 ms
52,328 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 38 ms
51,712 KB
testcase_20 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
A=[int(input()) for _ in range(n)]
A=[A[0]]+sorted(A[1:])

def check(x):
    k_score=A[0]+A[x]
    l,r=1,n-1
    cnt=0
    while l<r:
        if l==x:
            l+=1
        elif r==x:
            r-=1
            
        elif A[l]+A[r]>k_score:
            l+=1
            r-=1
            cnt+=1
        elif A[l]+A[r]<=k_score:
            l+=1
        
    return cnt<m
            
ng,ok=0,n
while abs(ok-ng)>1:
    mid=(ok+ng)//2
    if check(mid):ok=mid
    else:ng=mid

print(A[ok] if ok!=n else -1)
0