結果

問題 No.2774 Wake up Record 2
ユーザー ypwwypww
提出日時 2024-06-07 21:44:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 96,576 KB
最終ジャッジ日時 2024-06-07 21:44:14
合計ジャッジ時間 2,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,732 KB
testcase_01 AC 35 ms
52,332 KB
testcase_02 AC 37 ms
53,224 KB
testcase_03 AC 39 ms
52,604 KB
testcase_04 AC 36 ms
53,308 KB
testcase_05 AC 36 ms
53,776 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 36 ms
53,164 KB
testcase_08 AC 36 ms
51,812 KB
testcase_09 AC 52 ms
65,004 KB
testcase_10 AC 45 ms
60,696 KB
testcase_11 AC 66 ms
76,620 KB
testcase_12 AC 66 ms
73,548 KB
testcase_13 AC 92 ms
86,912 KB
testcase_14 AC 72 ms
86,328 KB
testcase_15 WA -
testcase_16 AC 78 ms
87,028 KB
testcase_17 AC 96 ms
96,412 KB
testcase_18 AC 79 ms
87,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k= map(int,input().split())
a = list(map(int, input().split()))

l = 0
r = 1000000000
while r-l>1:
    mid = (l+r)//2
    cnt = 0
    for aa in a:
        if aa <= mid:
            cnt += 1
    if cnt <= k:
        l = mid
    else:
        r = mid

arr = [0] * n
for i in range(n):
    if a[i] > l:
        arr[i] = 1
# print(arr)
ans = []
for i in range(1,n):
    if arr[i-1]==0 and arr[i]==1:
        ans.append(i+1)
print(len(ans))
print(*ans)
0