結果

問題 No.2773 Wake up Record 1
ユーザー YU HiroseYU Hirose
提出日時 2024-07-22 21:47:08
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 47,384 KB
最終ジャッジ日時 2024-07-22 21:47:14
合計ジャッジ時間 4,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
39,296 KB
testcase_01 AC 70 ms
39,168 KB
testcase_02 AC 66 ms
39,168 KB
testcase_03 AC 67 ms
39,168 KB
testcase_04 AC 68 ms
39,040 KB
testcase_05 AC 242 ms
45,696 KB
testcase_06 AC 75 ms
43,604 KB
testcase_07 AC 85 ms
46,124 KB
testcase_08 AC 77 ms
43,744 KB
testcase_09 AC 81 ms
45,156 KB
testcase_10 AC 77 ms
44,000 KB
testcase_11 AC 85 ms
45,768 KB
testcase_12 AC 80 ms
45,184 KB
testcase_13 AC 75 ms
43,208 KB
testcase_14 AC 78 ms
44,772 KB
testcase_15 AC 66 ms
39,168 KB
testcase_16 AC 85 ms
45,872 KB
testcase_17 AC 85 ms
47,384 KB
testcase_18 AC 74 ms
43,460 KB
testcase_19 AC 86 ms
46,128 KB
testcase_20 AC 76 ms
43,204 KB
testcase_21 AC 86 ms
45,500 KB
testcase_22 AC 85 ms
45,504 KB
testcase_23 AC 86 ms
45,772 KB
testcase_24 AC 82 ms
45,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    input = input.trim().split("\n");
    const n = parseInt(input[0].trim());
    const s = input[1].trim();

    let cnt = [];
    for (let i = 0; i < n; ++i) {
        if (s[i] == "o" && s[i-1] == "x")
            cnt.push(i+1);
    }
    console.log(cnt.length);
    console.log(cnt.join(" "));
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0