結果
問題 |
No.2773 Wake up Record 1
|
ユーザー |
![]() |
提出日時 | 2024-06-08 00:01:47 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 443 bytes |
コンパイル時間 | 1,875 ms |
コンパイル使用メモリ | 194,960 KB |
最終ジャッジ日時 | 2025-02-21 20:38:38 |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9 + 10; const ll INFL = 4e18; int main() { int N; string S; cin >> N >> S; vector<int> ans; for (int i = 1; i < N; i++) { if (S[i - 1] == 'x' && S[i] == 'o') { ans.push_back(i); } } cout << ans.size() << endl; for (int x : ans) { x++; cout << x << ' '; } cout << endl; }