結果

問題 No.3685 ワロングアンサーやんけ!
コンテスト
ユーザー caz37OwO
提出日時 2026-09-05 13:44:23
言語 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  
実行時間 124 ms / 2,000 ms
+ 296µs
コード長 2,595 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,408 ms
コンパイル使用メモリ 388,288 KB
実行使用メモリ 9,792 KB
最終ジャッジ日時 2026-09-05 13:48:32
合計ジャッジ時間 6,816 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge4_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll=long long;
using ldub=long double;
using lldub=__float128;
using str=string;

using mint=modint;

template<class T=ll>
using tup2=tuple<T,T>;
template<class T=ll>
using tup3=tuple<T,T,T>;
template<class T=ll>
using tup4=tuple<T,T,T,T>;
template<class T=ll>
using tup5=tuple<T,T,T,T,T>;
template<class T=ll>
using tup6=tuple<T,T,T,T,T,T>;
template<class T=ll>
using tup7=tuple<T,T,T,T,T,T,T>;

template<class T=ll>
using vec=vector<T>;
template<class T=ll>
using vec2=vector<vec<T>>;
template<class T=ll>
using vec3=vector<vec2<T>>;
template<class T=ll>
using vec4=vector<vec3<T>>;
template<class T=ll>
using vec5=vector<vec4<T>>;
template<class T=ll>
using vec6=vector<vec5<T>>;

template<class T>
using que=queue<T>;
template<class T>
using Pque=priority_queue<T>;
template<class T>
using pque=priority_queue<T, vector<T>, greater<T>>;

struct Edge{
  ll from,to,w=1,num=-1;
};
using gvec=vector<Edge>;
using gvec2=vector<gvec>;

template<class T>
bool chmax(T &a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T>
bool chmin(T &a,T b){if(b<a){a=b;return 1;}return 0;}

#define pb push_back
#define pf push_front
#define pob pop_back
#define pof pop_front
#define ins insert
#define tup make_tuple
#define low lower_bound
#define pops(a) __builtin_popcountll(a)
#define ctz(a) __builtin_ctzll(a)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
#define nperm(v) next_permutation(all(v))
#define Yes cout << "Yes" << endl
#define No cout << "No" << endl
#define YN(f) cout << ((f)?"Yes":"No") << endl

const int IINF=2e9;
const ll INF=4e18;

#ifndef LOCAL
#define debug(x)
#endif




// =================================================




void solve(){
  str T,S;
  ll K;
  cin >> T >> S >> K;
  ll N=(ll)T.size();
  if(S=="Warong"){
    for(ll k=0;k<K;k++) T[k]='A';
    ll f=0,c=0;
    for(ll i=0;i<N;i++) if(T[i]=='W') f=1;
    for(ll i=0;i<N;i++) if(T[i]=='?') c++;
    if(!f&&c==1){
      for(ll i=0;i<N;i++) if(T[i]=='?') T[i]='W';
    }
  }else{
    ll f=0,g=1,c=0;
    for(ll i=0;i<N;i++) if(T[i]=='W') g=0;
    for(ll k=0;k<K;k++) if(T[k]=='W') f=1;
    for(ll k=0;k<K;k++) if(T[k]=='?') c++;
    if(!f&&!g&&c==1){
      for(ll k=0;k<K;k++) if(T[k]=='?') T[k]='W';
    }
    if(!f&&c==0){
      for(ll i=K;i<N;i++) if(T[i]=='?') T[i]='A';
    }
  }
  cout << T << endl;
}

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

  mint::set_mod(998244353);
  // mint::set_mod(1000000007);

  ll T=1;
  cin >> T;
  while(T--) solve();
  return 0;
}
0