結果

問題 No.2774 Wake up Record 2
ユーザー BelkaBelka
提出日時 2024-07-11 11:19:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,532 KB
最終ジャッジ日時 2024-07-11 11:19:56
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 57 ms
10,880 KB
testcase_10 AC 34 ms
10,752 KB
testcase_11 AC 203 ms
13,828 KB
testcase_12 AC 122 ms
12,288 KB
testcase_13 AC 393 ms
17,580 KB
testcase_14 AC 499 ms
21,528 KB
testcase_15 AC 482 ms
21,276 KB
testcase_16 AC 461 ms
21,408 KB
testcase_17 AC 538 ms
21,532 KB
testcase_18 AC 666 ms
20,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
sleep, wake = 0, 10**9+1
while wake-sleep > 1:
    mid = (wake+sleep)//2
    cnt = 0
    for i in range(N):
        if A[i] <= mid:
            cnt += 1
    if cnt > K:
        wake = mid
    else:
        sleep = mid

ans = []
for i in range(1, N):
    if A[i-1] <= sleep and A[i] > sleep:
        ans.append(i+1)
print(len(ans))
print(*ans)
0