結果

問題 No.2773 Wake up Record 1
ユーザー Kiyu
提出日時 2024-06-07 22:17:51
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 603 bytes
コンパイル時間 4,607 ms
コンパイル使用メモリ 275,056 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 08:25:41
合計ジャッジ時間 5,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 21 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using i64 = long long;

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int n;
    std::cin >> n;
    std::string s;
    std::cin >> s;

    std::vector<int> a;
    for (int i = 0; i < n; i++) {
        if (s[i] == 'o') {
            a.emplace_back(i + 1);
            while (s[i] == 'o') {
                i++;
            }
        }
    }

    if (a.empty()) {
        std::cout << 0 << '\n';
    } else {
        std::cout << a.size() << "\n";
        for (auto _ : a) {
            std::cout << _ << " ";
        }
    }

    return 0;
}
0