結果

問題 No.2774 Wake up Record 2
ユーザー koukikawagoekoukikawagoe
提出日時 2024-06-07 21:57:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 105,660 KB
最終ジャッジ日時 2024-06-07 21:57:08
合計ジャッジ時間 4,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 57 ms
72,192 KB
testcase_10 AC 39 ms
53,084 KB
testcase_11 AC 114 ms
78,976 KB
testcase_12 AC 80 ms
77,056 KB
testcase_13 AC 305 ms
85,752 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 556 ms
105,152 KB
testcase_17 AC 597 ms
105,660 KB
testcase_18 AC 551 ms
105,084 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=" ")
0