結果

問題 No.2773 Wake up Record 1
ユーザー hirahira
提出日時 2024-07-29 09:30:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 13,292 ms
コンパイル使用メモリ 432,604 KB
実行使用メモリ 54,940 KB
最終ジャッジ日時 2024-07-29 09:31:18
合計ジャッジ時間 25,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
51,548 KB
testcase_01 AC 303 ms
50,560 KB
testcase_02 AC 316 ms
51,636 KB
testcase_03 AC 313 ms
51,728 KB
testcase_04 AC 305 ms
50,544 KB
testcase_05 AC 497 ms
54,704 KB
testcase_06 AC 440 ms
53,212 KB
testcase_07 AC 474 ms
54,788 KB
testcase_08 AC 444 ms
53,336 KB
testcase_09 AC 442 ms
53,844 KB
testcase_10 AC 467 ms
53,452 KB
testcase_11 AC 481 ms
54,924 KB
testcase_12 AC 463 ms
54,056 KB
testcase_13 AC 410 ms
52,308 KB
testcase_14 AC 472 ms
53,748 KB
testcase_15 AC 330 ms
51,768 KB
testcase_16 AC 480 ms
54,892 KB
testcase_17 AC 462 ms
54,308 KB
testcase_18 AC 390 ms
52,468 KB
testcase_19 AC 498 ms
54,896 KB
testcase_20 AC 377 ms
52,276 KB
testcase_21 AC 473 ms
54,516 KB
testcase_22 AC 459 ms
54,648 KB
testcase_23 AC 489 ms
54,940 KB
testcase_24 AC 477 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readln().toInt()
    val s = "." + readln()

    val ans = mutableListOf<Int>()
    for(i in 2 .. n) {
        if(s[i-1] == 'x' && s[i] == 'o') {
            ans.add(i)
        }
    }

    println(ans.size)
    println(ans.joinToString(" "))
}
0