結果

問題 No.2774 Wake up Record 2
ユーザー ButterflvButterflv
提出日時 2024-06-07 21:29:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 102,604 KB
最終ジャッジ日時 2024-06-07 21:29:58
合計ジャッジ時間 1,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,192 KB
testcase_01 AC 35 ms
53,744 KB
testcase_02 AC 35 ms
52,408 KB
testcase_03 AC 35 ms
52,684 KB
testcase_04 AC 35 ms
53,532 KB
testcase_05 AC 35 ms
52,836 KB
testcase_06 AC 34 ms
52,212 KB
testcase_07 AC 35 ms
53,440 KB
testcase_08 AC 38 ms
53,616 KB
testcase_09 AC 45 ms
63,476 KB
testcase_10 AC 42 ms
53,312 KB
testcase_11 AC 63 ms
75,868 KB
testcase_12 AC 56 ms
70,908 KB
testcase_13 AC 85 ms
90,664 KB
testcase_14 AC 67 ms
93,440 KB
testcase_15 AC 70 ms
92,888 KB
testcase_16 AC 67 ms
92,840 KB
testcase_17 AC 91 ms
102,604 KB
testcase_18 AC 67 ms
90,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 元気度 ok 以下で時間が K 以上になるときの ok の最小値を求める
N,K=map(int,input().split())
A=list(map(int,input().split()))
new_A = sorted(A)
pivot=new_A[K-1]

S=[]

for i in range(len(A)):
  if A[i]<=pivot:
    S.append("o")
  else:
    S.append("x")
ans=[]
for i in range(len(S)-1):
  if S[i]=="o" and S[i+1]=="x":
    ans.append(i+2)

print(len(ans))
print(*ans)
0