結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 33 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 33 ms
10,496 KB
testcase_05 AC 33 ms
10,496 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 57 ms
10,880 KB
testcase_10 AC 35 ms
10,496 KB
testcase_11 AC 187 ms
13,832 KB
testcase_12 AC 122 ms
12,288 KB
testcase_13 AC 387 ms
17,708 KB
testcase_14 AC 479 ms
21,404 KB
testcase_15 WA -
testcase_16 AC 500 ms
21,404 KB
testcase_17 AC 495 ms
21,524 KB
testcase_18 AC 709 ms
20,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
sleep, wake = 0, 10**9
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