結果

問題 No.2773 Wake up Record 1
ユーザー 筆者筆者
提出日時 2024-07-05 15:14:02
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 2,160 bytes
コンパイル時間 5,002 ms
コンパイル使用メモリ 273,740 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 15:14:08
合計ジャッジ時間 6,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
#define yes cout << "Yes" << '\n'
#define no cout << "No" << '\n'
#define YES cout << "YES" << '\n'
#define NO cout << "NO" << '\n'
#define OK cout << "OK" << '\n'
#define NG cout << "NG" << '\n'
#define Yes "Yes"
#define No "No"
#define Takahashi cout << "Takahashi" << '\n'
#define Aoki cout << "Aoki" << '\n'
#define minus cout << -1 << '\n'
#define br cout << '\n'
#define nl '\n'
#define sadFace ":("
#define circle 'o'
#define cross 'x'
#define elif else if
#define len(s) (int)s.length()
#define sz size
#define it insert
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define ll long long
#define ull unsigned long long
#define ft first
#define sd second
#define ctz(x) __builtin_ctz(x);
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rep1(i, n) for (int i = 1; i <= (n); i++)
#define MIN(v) *min_element(all(v))
#define MAX(v) *max_element(all(v))
#define all(v) v.begin(), v.end()
#define lla(v) rbegin(v), rend(v)
#define vecTotal(v) accumulate(v.begin(), v.end(), 0)
#define ruisekiwa(v, e) partial_sum(v.begin(), v.end(), back_inserter(e))
using namespace std;
//using namespace atcoder;

template <typename T>
T div_ceil(T a, T b) { // 切り上げ除算
	return (a >= 0 ? (a + b - 1) : a) / b;
}

template <typename T>
T div_floor(T a, T b) { // 切り捨て除算
	return a / b - (a % b < 0);
}

template <typename T>
void grid_input(vector<vector<T>> &v, T h, T w) {
    rep(i,h) {
        rep(j,w) {
            cin >> v[i][j];
        }
    }
}

template <typename T>
void vin(vector<T> &v, T n) {
    rep(i,n) cin >> v[i];
}

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

    int a,ans = 0;
    cin >> a;
    bool isSleep = false;
    vector<int> v;
    rep1(i,a) {
        char c;
        cin >> c;
        if(!isSleep) {
            if(c == circle) {
                isSleep = true;
                ans++;
                v.pb(i);
                }
        } else {
            if(c == cross) {
                isSleep = false;
            }
        }
    }
    cout << ans << nl;
    for(int i : v) {
        cout << i << ' ';
    }
    br;
}
0