結果
| 問題 | No.2773 Wake up Record 1 |
| コンテスト | |
| ユーザー |
srjywrdnprkt
|
| 提出日時 | 2024-06-20 10:02:28 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 413 bytes |
| 記録 | |
| コンパイル時間 | 1,947 ms |
| コンパイル使用メモリ | 195,672 KB |
| 最終ジャッジ日時 | 2025-02-21 23:28:18 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
int N;
string S;
vector<int> ans;
cin >> N >> S;
for (int i=1; i<N; i++){
if (S[i-1] == 'x' && S[i] == 'o') ans.push_back(i+1);
}
cout << ans.size() << endl;
for (auto x : ans) cout << x << " ";
cout << endl;
return 0;
}
srjywrdnprkt