結果

問題 No.3655 Adjacent Pairs in Triplets
コンテスト
ユーザー MM
提出日時 2026-08-30 13:33:52
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 4 ms / 2,000 ms
+ 281µs
コード長 859 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 6,158 ms
コンパイル使用メモリ 386,416 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-08-30 13:34:47
合計ジャッジ時間 7,319 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define vec vector
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back 
#define eb emplace_back

using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
const ll mod = 998244353;
using mint = modint998244353;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};
// using Graph = vector<vector<pair<int,ll>>>;
using Graph = vector<vector<int>>;

int main(){
  // input
  string S;
  cin >> S;
  int N = S.size();

  // solve
  int ans = 0;
  rep(i,N-2){
    int judge = 0;
    if(S[i] == S[i+1]) judge++;
    if(S[i+2] == S[i+1]) judge++;

    if(judge == 1) ans++;
  }
  
  // output
  cout << ans << endl;
}
0