結果

問題 No.2774 Wake up Record 2
ユーザー titiatitia
提出日時 2024-06-07 21:30:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,664 KB
最終ジャッジ日時 2024-06-07 21:30:38
合計ジャッジ時間 4,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 50 ms
11,264 KB
testcase_10 AC 35 ms
10,624 KB
testcase_11 AC 151 ms
13,956 KB
testcase_12 AC 102 ms
12,416 KB
testcase_13 AC 312 ms
17,836 KB
testcase_14 AC 516 ms
21,536 KB
testcase_15 AC 498 ms
21,536 KB
testcase_16 AC 492 ms
21,536 KB
testcase_17 AC 542 ms
21,664 KB
testcase_18 AC 566 ms
20,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

OK=10**10
NG=-1

while OK>NG+1:
    mid=(OK+NG)//2
    score=0

    for a in A:
        if a<=mid:
            score+=1

    #print(mid,score)
    if score>=K:
        OK=mid
    else:
        NG=mid
#print(OK)

ANS=[]
for i in range(1,N):
    if A[i-1]<=OK and A[i]>OK:
        ANS.append(i+1)

print(len(ANS))
print(*ANS)
0