結果

問題 No.2774 Wake up Record 2
ユーザー koukikawagoekoukikawagoe
提出日時 2024-06-07 21:58:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 105,744 KB
最終ジャッジ日時 2024-06-07 21:58:17
合計ジャッジ時間 4,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,876 KB
testcase_01 AC 34 ms
52,720 KB
testcase_02 AC 35 ms
53,524 KB
testcase_03 AC 35 ms
53,808 KB
testcase_04 AC 35 ms
52,612 KB
testcase_05 AC 36 ms
52,132 KB
testcase_06 AC 40 ms
52,336 KB
testcase_07 AC 35 ms
52,156 KB
testcase_08 AC 36 ms
52,320 KB
testcase_09 AC 52 ms
72,208 KB
testcase_10 AC 39 ms
54,312 KB
testcase_11 AC 105 ms
79,244 KB
testcase_12 AC 71 ms
76,680 KB
testcase_13 AC 277 ms
86,296 KB
testcase_14 AC 576 ms
105,260 KB
testcase_15 AC 554 ms
104,840 KB
testcase_16 AC 581 ms
104,944 KB
testcase_17 AC 584 ms
105,744 KB
testcase_18 AC 581 ms
105,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
A = list(map(int,input().split()))
a = A.copy()
a.sort()
b=a[K-1]
t = ""
for j in range(N):
    if A[j] <= b:
        t = t + "x"
    else:t = t + "o"
d = 0

for i in range(N-1):
    if t[i]+t[i+1]== "xo":
        d+=1
print(d)
for i in range(N-1):
    if t[i]+t[i+1]== "xo":
        print(i+2,end=" ")
print("")
0