結果

問題 No.2774 Wake up Record 2
ユーザー KudeKude
提出日時 2024-06-07 21:25:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 97,920 KB
最終ジャッジ日時 2024-06-07 21:25:57
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,200 KB
testcase_01 AC 34 ms
51,584 KB
testcase_02 AC 34 ms
51,328 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 36 ms
51,456 KB
testcase_06 AC 33 ms
51,584 KB
testcase_07 AC 37 ms
51,328 KB
testcase_08 AC 36 ms
51,584 KB
testcase_09 AC 60 ms
68,096 KB
testcase_10 AC 41 ms
53,632 KB
testcase_11 AC 129 ms
81,280 KB
testcase_12 AC 92 ms
77,696 KB
testcase_13 AC 199 ms
89,344 KB
testcase_14 AC 102 ms
96,256 KB
testcase_15 AC 143 ms
95,904 KB
testcase_16 AC 99 ms
96,640 KB
testcase_17 AC 192 ms
96,128 KB
testcase_18 AC 99 ms
97,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
s = list('o' * n)
for _, i in sorted((x, i) for i, x in enumerate(map(int, input().split())))[:k]:
    s[i] = 'x'
ans = []
for i, (a, b) in enumerate(zip(s, s[1:])):
    if a == 'x' and b == 'o':
        ans.append(i + 2)
print(len(ans))
print(*ans)
0