結果
| 問題 |
No.2773 Wake up Record 1
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-06-07 21:23:41 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 538 bytes |
| コンパイル時間 | 4,424 ms |
| コンパイル使用メモリ | 256,516 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-26 06:51:48 |
| 合計ジャッジ時間 | 4,569 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#pragma GCC optimize("O3")
#ifdef LOCAL
#include "algo/debug_ver3.hpp"
#else
#define debug(...)
#define debugArr(...)
#endif
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
int n;
cin >> n;
string s;
cin >> 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() << '\n';
for (int i = 0; i < int(ans.size()); ++i) {
cout << (i == 0 ? "" : " ") << ans[i] + 1;
}
cout << '\n';
}