結果

問題 No.2774 Wake up Record 2
ユーザー rururunrururun
提出日時 2024-06-13 10:42:41
言語 Swift
(5.10.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 1,602 ms
コンパイル使用メモリ 136,128 KB
実行使用メモリ 16,816 KB
最終ジャッジ日時 2024-06-13 10:42:45
合計ジャッジ時間 3,914 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,344 KB
testcase_01 AC 8 ms
9,344 KB
testcase_02 AC 8 ms
9,344 KB
testcase_03 AC 8 ms
9,344 KB
testcase_04 AC 8 ms
9,344 KB
testcase_05 AC 8 ms
9,344 KB
testcase_06 AC 7 ms
9,344 KB
testcase_07 AC 10 ms
9,600 KB
testcase_08 AC 9 ms
9,344 KB
testcase_09 AC 12 ms
9,600 KB
testcase_10 AC 9 ms
9,344 KB
testcase_11 AC 36 ms
10,404 KB
testcase_12 AC 23 ms
9,600 KB
testcase_13 AC 69 ms
14,244 KB
testcase_14 AC 89 ms
16,816 KB
testcase_15 AC 90 ms
16,816 KB
testcase_16 AC 89 ms
16,152 KB
testcase_17 AC 97 ms
16,764 KB
testcase_18 AC 57 ms
14,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let nk = readLine()!.split(separator: " ").map{Int($0)!}
let (n,k) = (nk[0],nk[1])
let sleep = readLine()!.split(separator: " ").map{Int($0)!}
let sp2 = sleep.sorted()
let j = sp2[k-1]
var ansArray = [Int]()
for i in 1..<n{
    if sleep[i] > j && sleep[i-1] <= j{
       ansArray.append(i+1)
    }
}
let ans2 = ansArray.map{String($0)}.joined(separator: " ")
print(ansArray.count)
print(ans2)
0