結果

問題 No.2774 Wake up Record 2
ユーザー N-noa21N-noa21
提出日時 2024-06-07 21:27:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 102,932 KB
最終ジャッジ日時 2024-06-07 21:27:49
合計ジャッジ時間 1,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,508 KB
testcase_01 AC 35 ms
52,536 KB
testcase_02 AC 35 ms
52,396 KB
testcase_03 AC 35 ms
53,188 KB
testcase_04 AC 35 ms
52,576 KB
testcase_05 AC 36 ms
52,444 KB
testcase_06 AC 36 ms
53,480 KB
testcase_07 AC 37 ms
52,824 KB
testcase_08 AC 36 ms
52,880 KB
testcase_09 AC 45 ms
65,268 KB
testcase_10 AC 37 ms
52,368 KB
testcase_11 AC 62 ms
76,984 KB
testcase_12 AC 57 ms
72,704 KB
testcase_13 AC 90 ms
92,912 KB
testcase_14 AC 72 ms
93,624 KB
testcase_15 AC 73 ms
95,184 KB
testcase_16 AC 67 ms
92,232 KB
testcase_17 AC 94 ms
102,932 KB
testcase_18 AC 76 ms
100,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
A = list(map(int, input().split()))

B = set(sorted(A)[:K])
#print(A)
#print(B)

t = []
for i in range(N):
    if A[i] in B:
        t.append("x")
    else:
        t.append("o")
#print(t)
ans = []
for i in range(N-1):
    if t[i] == "x" and t[i+1] == "o":
        ans.append(i+2)
print(len(ans))
print(*ans)
0