結果

問題 No.2774 Wake up Record 2
ユーザー ThetaTheta
提出日時 2024-07-10 15:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 96,060 KB
最終ジャッジ日時 2024-07-10 15:03:18
合計ジャッジ時間 5,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 50 ms
69,888 KB
testcase_10 AC 37 ms
52,992 KB
testcase_11 AC 101 ms
79,104 KB
testcase_12 AC 67 ms
76,828 KB
testcase_13 AC 265 ms
85,588 KB
testcase_14 AC 514 ms
91,136 KB
testcase_15 AC 489 ms
91,008 KB
testcase_16 AC 494 ms
90,880 KB
testcase_17 AC 538 ms
96,060 KB
testcase_18 AC 498 ms
91,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import pairwise


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

    sorted_A = sorted(A)
    threshold = sorted_A[K - 1]

    is_sleep = ""
    for elm in A:
        if elm <= threshold:
            is_sleep += "x"
        else:
            is_sleep += "o"
    ans = []
    for idx, (prev, next_) in enumerate(pairwise(is_sleep), 2):
        if prev == "x" and next_ == "o":
            ans.append(idx)
    print(len(ans))
    print(*ans)


if __name__ == "__main__":
    main()
0