結果

問題 No.2774 Wake up Record 2
ユーザー tkykwtnbtkykwtnb
提出日時 2024-06-07 21:46:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,800 KB
最終ジャッジ日時 2024-06-07 21:46:33
合計ジャッジ時間 2,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 64 ms
53,504 KB
testcase_02 AC 41 ms
53,120 KB
testcase_03 AC 45 ms
53,248 KB
testcase_04 AC 42 ms
53,888 KB
testcase_05 AC 38 ms
53,888 KB
testcase_06 AC 38 ms
53,376 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 AC 38 ms
53,632 KB
testcase_09 AC 63 ms
71,424 KB
testcase_10 AC 42 ms
55,168 KB
testcase_11 AC 131 ms
84,192 KB
testcase_12 AC 96 ms
79,488 KB
testcase_13 AC 229 ms
98,816 KB
testcase_14 AC 77 ms
95,744 KB
testcase_15 AC 77 ms
95,232 KB
testcase_16 AC 79 ms
95,872 KB
testcase_17 AC 98 ms
97,788 KB
testcase_18 AC 119 ms
108,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,K=map(int,input().split())
A=list(map(int,input().split()))
C=defaultdict(int)
for a in A:
    C[a]+=1
S=sorted(C.items())
G=0
C=0
for g,c in S:
    C+=c
    if C==K:
        G=g
        break
S=[]
for a in A:
    if a<=G:S.append("x")
    else:S.append("o")
S="".join(S)
ans=[]
for i in range(1,N):
    if S[i-1:i+1]=="xo":ans.append(i+1)
print(len(ans))
print(*ans)
0