Datasets:

problem_id
stringlengths
6
6
buggy_code
stringlengths
8
526k
fixed_code
stringlengths
12
526k
labels
listlengths
0
15
buggy_submission_id
int64
1
1.54M
fixed_submission_id
int64
2
1.54M
user_id
stringlengths
10
10
language
stringclasses
9 values
p03068
#include <bits/stdc++.h> using ll = long long; using namespace std; #define rep(i, n) for (int i = 0, i##_len = (int)(n); i < i##_len; i++) #define reps(i, n) for (int i = 1, i##_len = (int)(n); i <= i##_len; i++) #define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; i--) #define rreps(i, n) for (int i = ((int)(n)); i > 0; i--) #define repi(i, x) \ for (auto i = (x).begin(), i##_fin = (x).end(); i != i##_fin; i++) #define all(x) (x).begin(), (x).end() #define F first #define S second #define mp make_pair #define mt make_tuple #define pb push_back #define eb emplace_back string solve(bool a) { return ((a) ? "Yes" : "No"); } typedef vector<int> Vi; typedef vector<Vi> VVi; typedef pair<int, int> Pi; typedef vector<Pi> VPi; typedef vector<long long> V; typedef vector<V> VV; typedef pair<long long, long long> P; typedef vector<P> VP; template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } template <class T, class U> ostream &operator<<(ostream &os, const pair<T, U> &p) { os << "(" << p.first << "," << p.second << ")"; return os; } template <class T> ostream &operator<<(ostream &os, const vector<T> &v) { os << "{"; rep(i, v.size()) { if (i) os << ","; os << v[i]; } os << "}"; return os; } template <class T, class U> istream &operator>>(istream &is, pair<T, U> &p) { is >> p.first >> p.second; return is; } template <class T> istream &operator>>(istream &is, vector<T> &v) { rep(i, v.size()) { is >> v[i]; } return is; } const long long INFLL = 1LL << 60; const int INF = 1 << 30; const double PI = acos(-1); int main() { int k, n; string s; int ans = 0; cin >> n >> s >> k; rep(i, n) { cout << (s[i] == s[k - 1]) ? s[i] : '*'; } cout << endl; }
#include <bits/stdc++.h> using ll = long long; using namespace std; #define rep(i, n) for (int i = 0, i##_len = (int)(n); i < i##_len; i++) #define reps(i, n) for (int i = 1, i##_len = (int)(n); i <= i##_len; i++) #define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; i--) #define rreps(i, n) for (int i = ((int)(n)); i > 0; i--) #define repi(i, x) \ for (auto i = (x).begin(), i##_fin = (x).end(); i != i##_fin; i++) #define all(x) (x).begin(), (x).end() #define F first #define S second #define mp make_pair #define mt make_tuple #define pb push_back #define eb emplace_back string solve(bool a) { return ((a) ? "Yes" : "No"); } typedef vector<int> Vi; typedef vector<Vi> VVi; typedef pair<int, int> Pi; typedef vector<Pi> VPi; typedef vector<long long> V; typedef vector<V> VV; typedef pair<long long, long long> P; typedef vector<P> VP; template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } template <class T, class U> ostream &operator<<(ostream &os, const pair<T, U> &p) { os << "(" << p.first << "," << p.second << ")"; return os; } template <class T> ostream &operator<<(ostream &os, const vector<T> &v) { os << "{"; rep(i, v.size()) { if (i) os << ","; os << v[i]; } os << "}"; return os; } template <class T, class U> istream &operator>>(istream &is, pair<T, U> &p) { is >> p.first >> p.second; return is; } template <class T> istream &operator>>(istream &is, vector<T> &v) { rep(i, v.size()) { is >> v[i]; } return is; } const long long INFLL = 1LL << 60; const int INF = 1 << 30; const double PI = acos(-1); int main() { int k, n; string s; int ans = 0; cin >> n >> s >> k; rep(i, n) { cout << ((s[i] == s[k - 1]) ? s[i] : '*'); } cout << endl; }
[]
878,534
878,535
u179778090
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> k >> s; for (int i = 0; i < n; i++) { if (s[i] != s[k + 1]) s[i] = '*'; } cout << s << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k - 1]) s[i] = '*'; } cout << s << endl; }
[ "expression.operation.binary.remove", "misc.opposites", "expression.operator.arithmetic.change", "variable_access.subscript.index.change", "control_flow.branch.if.condition.change" ]
878,541
878,542
u528258842
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; char s[21]; cin >> n >> s >> k; k--; for (int i = 0; i <= n; i++) { if (s[i] == s[k]) { cout << s[i]; } else { cout << "*"; } } }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; char s[20]; cin >> n >> s >> k; k--; for (int i = 0; i < n; i++) { if (s[i] == s[k]) { cout << s[i]; } else { cout << "*"; } } }
[ "literal.number.change", "variable_declaration.array_dimensions.change", "expression.operator.compare.change", "control_flow.loop.for.condition.change", "expression.off_by_one", "expression.operation.binary.change" ]
878,543
878,544
u948917469
cpp
p03068
#include <algorithm> #include <iostream> using namespace std; int main(void) { int n; cin >> n; string s; cin >> s; int k; cin >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k]) { cout << "*"; } else { cout << s[i]; } } }
#include <algorithm> #include <iostream> using namespace std; int main(void) { int n; cin >> n; string s; cin >> s; int k; cin >> k; k--; for (int i = 0; i < n; i++) { if (s[i] != s[k]) { cout << "*"; } else { cout << s[i]; } } }
[ "expression.unary.arithmetic.add" ]
878,545
878,546
u520276780
cpp
p03068
#include <algorithm> #include <bits/stdc++.h> #include <cmath> #include <cstdio> #include <cstdlib> #include <deque> #include <functional> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <tuple> #include <utility> #include <vector> #define pi 3.14159265358979323846264338327950L using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K]) { S[i] = '*'; } } cout << S << endl; }
#include <algorithm> #include <bits/stdc++.h> #include <cmath> #include <cstdio> #include <cstdlib> #include <deque> #include <functional> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <tuple> #include <utility> #include <vector> #define pi 3.14159265358979323846264338327950L using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) { S[i] = '*'; } } cout << S << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,551
878,552
u158677249
cpp
p03068
#pragma GCC optimize("O3") #include <bits/stdc++.h> #define ll long long #define rep(i, n) for (ll i = 0; i < (n); i++) #define pll pair<ll, ll> #define pq priority_queue #define pb push_back #define eb emplace_back #define fi first #define se second #define ios ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); #define lb(c, x) distance(c.begin(), lower_bound(all(c), x)) #define ub(c, x) distance(c.begin(), upper_bound(all(c), x)) using namespace std; template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } const ll INF = 1e18; const ll mod = 1e9 + 7; const double eps = 0.000000001; int main() { ll n; cin >> n; string s; cin >> n; ll k; cin >> k; k--; char c = s[k]; rep(i, n) { if (s[i] != c) s[i] = '*'; } cout << s << endl; return 0; }
#pragma GCC optimize("O3") #include <bits/stdc++.h> #define ll long long #define rep(i, n) for (ll i = 0; i < (n); i++) #define pll pair<ll, ll> #define pq priority_queue #define pb push_back #define eb emplace_back #define fi first #define se second #define ios ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); #define lb(c, x) distance(c.begin(), lower_bound(all(c), x)) #define ub(c, x) distance(c.begin(), upper_bound(all(c), x)) using namespace std; template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } const ll INF = 1e18; const ll mod = 1e9 + 7; const double eps = 0.000000001; int main() { ll n; cin >> n; string s; cin >> s; ll k; cin >> k; k--; char c = s[k]; rep(i, n) { if (s[i] != c) s[i] = '*'; } cout << s << endl; return 0; }
[ "identifier.change", "expression.operation.binary.change" ]
878,556
878,557
u882039496
cpp
p03068
// ABC_128_B// pair型の中にpair型 /*int main() { int n; cin >> n; vector<pair<pair<string,int>,int>> a(n); for(int i=0;i<n;i++){ string s; cin >> s; int num; cin >> num; num = num * -1; a.at(i).first.first = s; a.at(i).first.second = num; a.at(i).second = i; } sort(a.begin(), a.end()); for(int i=0;i<n;i++){ cout << a.at(i).second +1 << endl; } } */ // ABC_058_Cのように // s.at(j) == a のとき // cout << s.at(j)-'0' - 49 << endl; //とすると、「0」を出力してくれる。 →もっといいほかの方法はないの? //全bit探索を入れよう!! /*ABC_167_C skill up などを参考に… //https://qiita.com/hareku/items/3d08511eab56a481c7db int main() { int n = 3; // {0, 1, ..., n-1} の部分集合の全探索 for (int bit = 0; bit < (1<<n); ++bit) { vector<int> S; for (int i = 0; i < n; ++i) { if (bit & (1<<i)) { // 列挙に i が含まれるか S.push_back(i); } } cout << bit << ": {"; for (int i = 0; i < (int)S.size(); ++i) { cout << S[i] << " "; } cout << "}" << endl; } } */ // next_permutation(順列列挙) /*https://note.com/memenekokaburi/n/nf0201d6002cd ABC_150_Cなど。 int main() { int n; cin >> n ; vector<int>array = {}; for(int i=0;i<n;i++){ array.push_back(i); } do{ for(int i=0; i<n; i++){ cout << array.at(i); if(i!=n-1)cout<<" "; } cout<<endl; }while(next_permutation(array.begin(),array.end())); return 0; } */ // ABC126_Cのように関数でdouble型で返ってきてほしい場合はdouble // kan_halfのようにかく /* //ABC_041_C// pair型 int main() { int n; cin >> n; vector<pair<int,int>>a(n); for(int i=0;i<n;i++){ int num; cin >> num; a.at(i).first = num; a.at(i).second = i; } sort(a.begin(), a.end()); reverse(a.begin(),a.end()); for(int i=0;i<n;i++){ cout << a.at(i).second + 1<< endl; } } */ /*ABC_068_C //boolの配列を使って bool s[200050] = {}; bool t[200050] = {}; int main() { ll n, m; cin >> n >> m; for (int i = 0; i < m; i++){ ll a, b; cin >> a >> b; if (a == 1) { t[b] = true; } if (b == n) { s[a] = true; } } for (int i = 0; i < 200050; i++){ if (s[i] && t[i]) { cout << "POSSIBLE" << endl; return 0; } } cout << "IMPOSSIBLE" << endl; return 0; } */ // int32 4 signed, signed int, int -2,147,483,648 ~ 2,147,483,647 = // 2*10^9 再帰関数 ABC_029_C /* void f(int rest , string s){ if(rest == 0){ cout << s << endl; } else{ for(char moji = 'a' ;moji <='c' ; moji++){ f(rest-1,s+moji); } } } int main() { int n; cin >> n; f(n, ""); } */ //連想配列 ARC_081_Cの解答 //ABC073でも復習できます。 /* int main() { ll n; cin >> n; vector<ll>a(n); rep(i,n) cin>>a.at(i); map<ll,ll>mp; rep(i,n){ mp[a.at(i)]++; } ll one = 0; ll two = 0; for(auto p:mp){ // cout << p.first << " " << p.second << endl; if(p.second >= 2){ if(one <= p.first){ two = one; one = p.first; } } if(p.second >= 4){ if(one <= p.first){ two = p.first; one = p.first; } } } // cout << one << endl; // cout << two << endl; // cout << endl; cout << one * two << endl; } */ //#define pi 3.14159265359 //桁数を指定して出力する方法 //#include <iomanip>//これをincludeしておかないといけない // cout << fixed << setprecision(20)<< ans << endl; // s.at(0) = toupper(s.at(0));//小文字なら大文字へ//大文字の場合はそのまま // s.at(i) = tolower(s.at(i));//大文字なら小文字へ//小文字の場合はそのまま // getline(cin, s); //空白文字を含むものをまとめて入力できる。 // s配列に格納した単語を、辞書順にソートする // sort(s.begin(), s.end()); // string t = "keyence";//で文字列を格納できる // s.empty() //emptyなら1を出力 入っていれば0を出力 /*//ABC018-B 部分的にreverseをかける解法 int main() { string s; cin >> s; int n; cin >> n; vector<int>a(n); vector<int>b(n); rep(i,n) cin>>a.at(i)>>b.at(i); rep(i,n)a.at(i)--; rep(i,n)b.at(i)--; string t; rep(i,n){ t = s; for(int k=0;k<=b.at(i)-a.at(i);k++){ t.at(a.at(i)+k) = s.at(b.at(i)-k); } s = t; } cout << s << endl; } *///ABC018-B // cout << char(i+48) << // endl;//なぜかaは47と得る時がある。+48で出力もaにできる。 cout << char(97) << // endl;//アスキーコードでaを出力 // sort(b.begin(), b.end());//bという配列を小さい方からソート // reverse(b.begin(), b.end());//bという配列をリターン /*01 02 03 12 13 23 と6回見ていくパターン for(int i=0;i<n-1;i++){ for(int j=i+1;j<n;j++){ } } */ // vector<vector<int>> a(3, vector<int>(4));//int型の2次元配列(3×4要素の)の宣言 // 10のi乗pow(10, i);//ただしdouble型のため注意 /*string s; stringでの文字列を数字型に変える方法 cin >> s; rep(i,s.size()-2) { int a= (s.at(i)-'0')*100 + (s.at(i+1)-'0')*10+ s.at(i+2) -'0'; */ #include <bits/stdc++.h> #include <iomanip> //これをincludeしておかないといけない using namespace std; typedef long long ll; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define PI 3.14159265359 ll gcd(ll a, ll b) { if (a % b == 0) { return (b); } else { return (gcd(b, a % b)); } } ll lcm(ll a, ll b) { // return a * b / gcd(a, b); return a / gcd(a, b) * b; } int kan_hyaku(int n) { int kurai = 0; for (int i = 0; i < 3; i++) { kurai = n % 10; n /= 10; } return kurai; } int kan_ju(int n) { int kurai = 0; for (int i = 0; i < 2; i++) { kurai = n % 10; n /= 10; } return kurai; } int kan_ichi(int n) { int kurai = 0; for (int i = 0; i < 1; i++) { kurai = n % 10; n /= 10; } return kurai; } int keta(int n) { int wa = 1; while (n > 0) { wa *= 10; n--; } return wa; } double kan_half(int n) { double wa = 1; while (n > 0) { // cout << "TEST"<<endl; wa *= 0.5; // cout << wa << endl; n--; } return wa; } ll facctorialMethod(ll k) { ll sum = 1; for (ll i = 1; i <= k; ++i) { sum = sum % 1000000007 * i % 1000000007; } return sum; } /* int n; cin >> n; vector<int> a(n); rep(i,n) cin >> a.at(i); */ bool red[100010] = {}; int main() { int n, k; string s; cin >> n >> s >> k; char moji = s.at(k); rep(i, n) { if (s.at(i) != moji) { s.at(i) = '*'; } } cout << s << endl; }
// ABC_128_B// pair型の中にpair型 /*int main() { int n; cin >> n; vector<pair<pair<string,int>,int>> a(n); for(int i=0;i<n;i++){ string s; cin >> s; int num; cin >> num; num = num * -1; a.at(i).first.first = s; a.at(i).first.second = num; a.at(i).second = i; } sort(a.begin(), a.end()); for(int i=0;i<n;i++){ cout << a.at(i).second +1 << endl; } } */ // ABC_058_Cのように // s.at(j) == a のとき // cout << s.at(j)-'0' - 49 << endl; //とすると、「0」を出力してくれる。 →もっといいほかの方法はないの? //全bit探索を入れよう!! /*ABC_167_C skill up などを参考に… //https://qiita.com/hareku/items/3d08511eab56a481c7db int main() { int n = 3; // {0, 1, ..., n-1} の部分集合の全探索 for (int bit = 0; bit < (1<<n); ++bit) { vector<int> S; for (int i = 0; i < n; ++i) { if (bit & (1<<i)) { // 列挙に i が含まれるか S.push_back(i); } } cout << bit << ": {"; for (int i = 0; i < (int)S.size(); ++i) { cout << S[i] << " "; } cout << "}" << endl; } } */ // next_permutation(順列列挙) /*https://note.com/memenekokaburi/n/nf0201d6002cd ABC_150_Cなど。 int main() { int n; cin >> n ; vector<int>array = {}; for(int i=0;i<n;i++){ array.push_back(i); } do{ for(int i=0; i<n; i++){ cout << array.at(i); if(i!=n-1)cout<<" "; } cout<<endl; }while(next_permutation(array.begin(),array.end())); return 0; } */ // ABC126_Cのように関数でdouble型で返ってきてほしい場合はdouble // kan_halfのようにかく /* //ABC_041_C// pair型 int main() { int n; cin >> n; vector<pair<int,int>>a(n); for(int i=0;i<n;i++){ int num; cin >> num; a.at(i).first = num; a.at(i).second = i; } sort(a.begin(), a.end()); reverse(a.begin(),a.end()); for(int i=0;i<n;i++){ cout << a.at(i).second + 1<< endl; } } */ /*ABC_068_C //boolの配列を使って bool s[200050] = {}; bool t[200050] = {}; int main() { ll n, m; cin >> n >> m; for (int i = 0; i < m; i++){ ll a, b; cin >> a >> b; if (a == 1) { t[b] = true; } if (b == n) { s[a] = true; } } for (int i = 0; i < 200050; i++){ if (s[i] && t[i]) { cout << "POSSIBLE" << endl; return 0; } } cout << "IMPOSSIBLE" << endl; return 0; } */ // int32 4 signed, signed int, int -2,147,483,648 ~ 2,147,483,647 = // 2*10^9 再帰関数 ABC_029_C /* void f(int rest , string s){ if(rest == 0){ cout << s << endl; } else{ for(char moji = 'a' ;moji <='c' ; moji++){ f(rest-1,s+moji); } } } int main() { int n; cin >> n; f(n, ""); } */ //連想配列 ARC_081_Cの解答 //ABC073でも復習できます。 /* int main() { ll n; cin >> n; vector<ll>a(n); rep(i,n) cin>>a.at(i); map<ll,ll>mp; rep(i,n){ mp[a.at(i)]++; } ll one = 0; ll two = 0; for(auto p:mp){ // cout << p.first << " " << p.second << endl; if(p.second >= 2){ if(one <= p.first){ two = one; one = p.first; } } if(p.second >= 4){ if(one <= p.first){ two = p.first; one = p.first; } } } // cout << one << endl; // cout << two << endl; // cout << endl; cout << one * two << endl; } */ //#define pi 3.14159265359 //桁数を指定して出力する方法 //#include <iomanip>//これをincludeしておかないといけない // cout << fixed << setprecision(20)<< ans << endl; // s.at(0) = toupper(s.at(0));//小文字なら大文字へ//大文字の場合はそのまま // s.at(i) = tolower(s.at(i));//大文字なら小文字へ//小文字の場合はそのまま // getline(cin, s); //空白文字を含むものをまとめて入力できる。 // s配列に格納した単語を、辞書順にソートする // sort(s.begin(), s.end()); // string t = "keyence";//で文字列を格納できる // s.empty() //emptyなら1を出力 入っていれば0を出力 /*//ABC018-B 部分的にreverseをかける解法 int main() { string s; cin >> s; int n; cin >> n; vector<int>a(n); vector<int>b(n); rep(i,n) cin>>a.at(i)>>b.at(i); rep(i,n)a.at(i)--; rep(i,n)b.at(i)--; string t; rep(i,n){ t = s; for(int k=0;k<=b.at(i)-a.at(i);k++){ t.at(a.at(i)+k) = s.at(b.at(i)-k); } s = t; } cout << s << endl; } *///ABC018-B // cout << char(i+48) << // endl;//なぜかaは47と得る時がある。+48で出力もaにできる。 cout << char(97) << // endl;//アスキーコードでaを出力 // sort(b.begin(), b.end());//bという配列を小さい方からソート // reverse(b.begin(), b.end());//bという配列をリターン /*01 02 03 12 13 23 と6回見ていくパターン for(int i=0;i<n-1;i++){ for(int j=i+1;j<n;j++){ } } */ // vector<vector<int>> a(3, vector<int>(4));//int型の2次元配列(3×4要素の)の宣言 // 10のi乗pow(10, i);//ただしdouble型のため注意 /*string s; stringでの文字列を数字型に変える方法 cin >> s; rep(i,s.size()-2) { int a= (s.at(i)-'0')*100 + (s.at(i+1)-'0')*10+ s.at(i+2) -'0'; */ #include <bits/stdc++.h> #include <iomanip> //これをincludeしておかないといけない using namespace std; typedef long long ll; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define PI 3.14159265359 ll gcd(ll a, ll b) { if (a % b == 0) { return (b); } else { return (gcd(b, a % b)); } } ll lcm(ll a, ll b) { // return a * b / gcd(a, b); return a / gcd(a, b) * b; } int kan_hyaku(int n) { int kurai = 0; for (int i = 0; i < 3; i++) { kurai = n % 10; n /= 10; } return kurai; } int kan_ju(int n) { int kurai = 0; for (int i = 0; i < 2; i++) { kurai = n % 10; n /= 10; } return kurai; } int kan_ichi(int n) { int kurai = 0; for (int i = 0; i < 1; i++) { kurai = n % 10; n /= 10; } return kurai; } int keta(int n) { int wa = 1; while (n > 0) { wa *= 10; n--; } return wa; } double kan_half(int n) { double wa = 1; while (n > 0) { // cout << "TEST"<<endl; wa *= 0.5; // cout << wa << endl; n--; } return wa; } ll facctorialMethod(ll k) { ll sum = 1; for (ll i = 1; i <= k; ++i) { sum = sum % 1000000007 * i % 1000000007; } return sum; } /* int n; cin >> n; vector<int> a(n); rep(i,n) cin >> a.at(i); */ bool red[100010] = {}; int main() { int n, k; string s; cin >> n >> s >> k; char moji = s.at(k - 1); rep(i, n) { if (s.at(i) != moji) { s.at(i) = '*'; } } cout << s << endl; }
[ "assignment.change" ]
878,560
878,561
u037563046
cpp
p03068
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<int, int>; using pll = pair<long long, long long>; constexpr char ln = '\n'; constexpr long long MOD = 1000000007LL; constexpr long long INF = 1001001001LL; constexpr long long LINF = 1000000000100000000; #define all(x) (x).begin(), (x).end() #define rep(i, n) for (int i = 0; i < (n); i++) #define rept(i, j, n) for (int i = (j); i < (n); i++) template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } int main() { int n, k; string s; cin >> n >> s >> k; char c = s[k]; rep(i, n) if (s[i] != c) s[i] = '*'; cout << s << ln; }
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<int, int>; using pll = pair<long long, long long>; constexpr char ln = '\n'; constexpr long long MOD = 1000000007LL; constexpr long long INF = 1001001001LL; constexpr long long LINF = 1000000000100000000; #define all(x) (x).begin(), (x).end() #define rep(i, n) for (int i = 0; i < (n); i++) #define rept(i, j, n) for (int i = (j); i < (n); i++) template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } int main() { int n, k; string s; cin >> n >> s >> k; k--; char c = s[k]; rep(i, n) if (s[i] != c) s[i] = '*'; cout << s << ln; }
[ "expression.unary.arithmetic.add" ]
878,562
878,563
u062736195
cpp
p03068
#include <algorithm> #include <cmath> #include <iomanip> #include <iostream> #include <list> #include <queue> #include <string> using namespace std; typedef long long ll; typedef pair<int, int> P; int main() { int N, K; char S[10]; cin >> N; for (int i = 0; i < N; i++) { cin >> S[i]; } cin >> K; for (int i = 0; i < N; i++) { if (S[K] != S[i]) { S[i] = '*'; } } for (int i = 0; i < N; i++) { cout << S[i]; } }
#include <algorithm> #include <cmath> #include <iomanip> #include <iostream> #include <list> #include <queue> #include <string> using namespace std; typedef long long ll; typedef pair<int, int> P; int main() { int N, K; char S[10]; cin >> N; for (int i = 0; i < N; i++) { cin >> S[i]; } cin >> K; for (int i = 0; i < N; i++) { if (S[K - 1] != S[i]) { S[i] = '*'; } } for (int i = 0; i < N; i++) { cout << S[i]; } }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,578
878,579
u554988565
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S.at(K - 1) != S.at(i)) S.at(K - 1) == '*'; cout << S.at(i); } cout << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S.at(K - 1) != S.at(i)) S.at(i) = '*'; cout << S.at(i); } cout << endl; }
[ "assignment.variable.change", "call.arguments.change", "expression.operation.binary.change", "expression.operation.binary.remove", "expression.operation.compare.replace.remove", "assignment.replace.add", "misc.typo" ]
878,580
878,581
u991713078
cpp
p03068
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep1(i, n) for (int i = 1; i <= (int)(n); i++) /* ------------------------------------------------ */ ll fact(int i) { //階乗 if (i == 0) return 1; return (fact(i - 1)) * i; } ll gcm(ll a, ll b) { //最大公約数 if (b == 0) return a; return gcm(b, a % b); } ll lcm(ll a, ll b) { //最小公倍数 return a * b / gcm(a, b); } int keta(ll n) { //桁数を求める if (n == 0) return 1; int count = 0; while (n != 0) { n /= 10; count++; } return count; } ll ketasum(ll n) { //各桁の和 ll sum = 0; while (n != 0) { sum += n % 10; n /= 10; } return sum; } /* ------------------------------------------------ */ int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; rep(i, n) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; }
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep1(i, n) for (int i = 1; i <= (int)(n); i++) /* ------------------------------------------------ */ ll fact(int i) { //階乗 if (i == 0) return 1; return (fact(i - 1)) * i; } ll gcm(ll a, ll b) { //最大公約数 if (b == 0) return a; return gcm(b, a % b); } ll lcm(ll a, ll b) { //最小公倍数 return a * b / gcm(a, b); } int keta(ll n) { //桁数を求める if (n == 0) return 1; int count = 0; while (n != 0) { n /= 10; count++; } return count; } ll ketasum(ll n) { //各桁の和 ll sum = 0; while (n != 0) { sum += n % 10; n /= 10; } return sum; } /* ------------------------------------------------ */ int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; k--; rep(i, n) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; }
[ "expression.unary.arithmetic.add" ]
878,582
878,583
u608773191
cpp
p03068
#include <bits/stdc++.h> using namespace std; int n, k; string s; int main() { cin >> n >> k >> s; for (auto &c : s) if (c != s[k - 1]) c = '*'; cout << s << endl; return 0; }
#include <bits/stdc++.h> using namespace std; int n, k; string s; int main() { cin >> n >> s >> k; for (auto &c : s) if (c != s[k - 1]) c = '*'; cout << s << endl; return 0; }
[ "expression.operation.binary.remove" ]
878,595
878,596
u269963329
cpp
p03068
#include <iostream> #include <string> using namespace std; int main() { int n, k, i; cin >> n; char ar[n]; cin >> ar; cin >> k; char ch = ar[k - 1]; for (i = 0; i < n; i++) { if (ar[i] == ch) cout << "*"; else cout << ar[i]; } }
#include <iostream> #include <string> using namespace std; int main() { int n, k, i; cin >> n; char ar[n]; cin >> ar; cin >> k; char ch = ar[k - 1]; for (i = 0; i < n; i++) { if (ar[i] != ch) cout << "*"; else cout << ar[i]; } }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,600
878,601
u861915705
cpp
p03068
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; #define pb push_back #define sort(s) sort(s.begin(), s.end()) #define reverse(s) reverse(s.begin(), s.end()) #define rep(i, n) for (ll(i) = 0; (i) < (n); (i)++) const ll mod = 1e9 + 7; //最大公約数 ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; } //最小公倍数 ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } //素数判定 bool isPrime(ll x) { ll i; if (x < 2) return 0; else if (x == 2) return 1; if (x % 2 == 0) return 0; for (i = 3; i * i <= x; i += 2) if (x % i == 0) return 0; return 1; } //桁和 int digsum(ll n) { int res = 0; while (n > 0) { res += n % 10; n /= 10; } return res; } //桁数 int dignum(ll n) { int res = 0; while (n > 0) { res++; n /= 10; } return res; } //文字列中の特定の文字カウント ll stringcount(string s, char c) { return count(s.cbegin(), s.cend(), c); } //階乗 ll ka(ll i) { ll res = 1; while (i > 0) { res = res * i; i--; } return res; } // ncr ll ncr(ll x, ll y) { ll a = x; ll b = 1; if (y > (x / 2)) { y = x - y; } for (ll i = 1; i < y; i++) { a *= x - i; b *= i + 1; } return a / b; } //フィボナッチ数列 ll f(ll x) { ll dp[x + 1]; dp[1] = 1; dp[2] = 1; for (ll i = 3; i <= x; i++) { dp[i] = dp[i - 1] + dp[i - 2]; } return dp[x]; } // char->int int ctoi(char c) { return c - '0'; } int main() { int n, k; string s; cin >> n >> s >> k; char x = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] == x) { cout << '*'; } else { cout << s[i]; } } cout << endl; }
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; #define pb push_back #define sort(s) sort(s.begin(), s.end()) #define reverse(s) reverse(s.begin(), s.end()) #define rep(i, n) for (ll(i) = 0; (i) < (n); (i)++) const ll mod = 1e9 + 7; //最大公約数 ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; } //最小公倍数 ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } //素数判定 bool isPrime(ll x) { ll i; if (x < 2) return 0; else if (x == 2) return 1; if (x % 2 == 0) return 0; for (i = 3; i * i <= x; i += 2) if (x % i == 0) return 0; return 1; } //桁和 int digsum(ll n) { int res = 0; while (n > 0) { res += n % 10; n /= 10; } return res; } //桁数 int dignum(ll n) { int res = 0; while (n > 0) { res++; n /= 10; } return res; } //文字列中の特定の文字カウント ll stringcount(string s, char c) { return count(s.cbegin(), s.cend(), c); } //階乗 ll ka(ll i) { ll res = 1; while (i > 0) { res = res * i; i--; } return res; } // ncr ll ncr(ll x, ll y) { ll a = x; ll b = 1; if (y > (x / 2)) { y = x - y; } for (ll i = 1; i < y; i++) { a *= x - i; b *= i + 1; } return a / b; } //フィボナッチ数列 ll f(ll x) { ll dp[x + 1]; dp[1] = 1; dp[2] = 1; for (ll i = 3; i <= x; i++) { dp[i] = dp[i - 1] + dp[i - 2]; } return dp[x]; } // char->int int ctoi(char c) { return c - '0'; } int main() { int n, k; string s; cin >> n >> s >> k; char x = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] != x) { cout << '*'; } else { cout << s[i]; } } cout << endl; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,618
878,619
u584787460
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; int str = s[k - 1]; for (int i = 0; i < n; i++) { if (str != s[i]) cout << '*'; else cout << str; } cout << endl; return 0; }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char str = s[k - 1]; for (int i = 0; i < n; i++) { if (str != s[i]) cout << '*'; else cout << str; } cout << endl; return 0; }
[ "variable_declaration.type.primitive.change" ]
878,629
878,630
u459105164
cpp
p03068
#include <bits/stdc++.h> using namespace std; // region template #define rep(i, a, b) for (int i = (a); i < (b); ++i) #define trav(a, x) for (auto &a : x) #define all(x) begin(x), end(x) #define sz(x) (int)(x).size() typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pii; typedef vector<int> vi; ll gcd(ll a, ll b) { return __gcd(a, b); } ll euclid(ll a, ll b, ll &x, ll &y) { if (b) { ll d = euclid(b, a % b, y, x); return y -= a / b * x, d; } return x = 1, y = 0, a; } typedef unsigned long long ull; typedef long double ld; ull mod_mul(ull a, ull b, ull M) { ll ret = a * b - M * ull(ld(a) * ld(b) / ld(M)); return ret + M * (ret < 0) - M * (ret >= (ll)M); } ull mod_pow(ull b, ull e, ull mod) { ull ans = 1; for (; e; b = mod_mul(b, b, mod), e /= 2) if (e & 1) ans = mod_mul(ans, b, mod); return ans; } const ll mod = 1000000007; struct Mod { ll x; Mod(ll xx) : x(xx) {} Mod operator+(Mod b) { return Mod((x + b.x) % mod); } Mod operator-(Mod b) { return Mod((x - b.x) % mod); } Mod operator*(Mod b) { return Mod((x * b.x) % mod); } Mod operator/(Mod b) { return *this * invert(b); } Mod invert(Mod a) { ll x, y, g = euclid(a.x, mod, x, y); assert(g == 1); return Mod((x + mod) % mod); } Mod operator^(ll e) { if (!e) return Mod(1); Mod r = *this ^ (e / 2); r = r * r; return e & 1 ? *this * r : r; } }; // endregion int main() { cin.sync_with_stdio(0); cin.tie(0); cin.exceptions(cin.failbit); int n, k; string s; cin >> n >> s >> k; rep(i, 0, n) if (s[i] != s[k]) s[i] = '*'; cout << s << endl; }
#include <bits/stdc++.h> using namespace std; // region template #define rep(i, a, b) for (int i = (a); i < (b); ++i) #define trav(a, x) for (auto &a : x) #define all(x) begin(x), end(x) #define sz(x) (int)(x).size() typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pii; typedef vector<int> vi; ll gcd(ll a, ll b) { return __gcd(a, b); } ll euclid(ll a, ll b, ll &x, ll &y) { if (b) { ll d = euclid(b, a % b, y, x); return y -= a / b * x, d; } return x = 1, y = 0, a; } typedef unsigned long long ull; typedef long double ld; ull mod_mul(ull a, ull b, ull M) { ll ret = a * b - M * ull(ld(a) * ld(b) / ld(M)); return ret + M * (ret < 0) - M * (ret >= (ll)M); } ull mod_pow(ull b, ull e, ull mod) { ull ans = 1; for (; e; b = mod_mul(b, b, mod), e /= 2) if (e & 1) ans = mod_mul(ans, b, mod); return ans; } const ll mod = 1000000007; struct Mod { ll x; Mod(ll xx) : x(xx) {} Mod operator+(Mod b) { return Mod((x + b.x) % mod); } Mod operator-(Mod b) { return Mod((x - b.x) % mod); } Mod operator*(Mod b) { return Mod((x * b.x) % mod); } Mod operator/(Mod b) { return *this * invert(b); } Mod invert(Mod a) { ll x, y, g = euclid(a.x, mod, x, y); assert(g == 1); return Mod((x + mod) % mod); } Mod operator^(ll e) { if (!e) return Mod(1); Mod r = *this ^ (e / 2); r = r * r; return e & 1 ? *this * r : r; } }; // endregion int main() { cin.sync_with_stdio(0); cin.tie(0); cin.exceptions(cin.failbit); int n, k; string s; cin >> n >> s >> k; rep(i, 0, n) if (s[i] != s[k - 1]) s[i] = '*'; cout << s << endl; }
[ "control_flow.branch.if.condition.change" ]
878,637
878,638
u729337236
cpp
p03068
#include <bits/stdc++.h> #define all(x) (x).begin(), (x).end() using namespace std; typedef long long ll; const int MOD = 1e9 + 7; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] == s[k - 1]) s[i] = '*'; } cout << s << endl; return 0; }
#include <bits/stdc++.h> #define all(x) (x).begin(), (x).end() using namespace std; typedef long long ll; const int MOD = 1e9 + 7; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k - 1]) s[i] = '*'; } cout << s << endl; return 0; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,641
878,642
u654240084
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; string S; cin >> S; int K; cin >> K; for (int i = 0; i < N; i++) { if (S.at(i) != S.at(K)) { S.at(i) = '*'; } } cout << S << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; string S; cin >> S; int K; cin >> K; for (int i = 0; i < N; i++) { if (S.at(i) != S.at(K - 1)) { S.at(i) = '*'; } } cout << S << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,643
878,644
u629548179
cpp
p03068
#include <bits/stdc++.h> using namespace std; #define LL long int const LL MOD = pow(10, 9) + 7; int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; for (int i = 0; i < n; ++i) { if (s[i] == s[k]) { cout << s[i]; } else { cout << '*'; } } cout << endl; return 0; }
#include <bits/stdc++.h> using namespace std; #define LL long int const LL MOD = pow(10, 9) + 7; int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; for (int i = 0; i < n; ++i) { if (s[i] == s[k - 1]) { cout << s[i]; } else { cout << '*'; } } cout << endl; return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,647
878,648
u798665594
cpp
p03068
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main() { int n, k; string s; cin >> n >> s >> k; string temp = s.substr(k, 1); char c = *temp.c_str(); rep(i, n) { if (c != s[i]) { s[i] = '*'; } } cout << s << endl; return 0; }
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main() { int n, k; string s; cin >> n >> s >> k; string temp = s.substr(k - 1, 1); char c = *temp.c_str(); rep(i, n) { if (c != s[i]) { s[i] = '*'; } } cout << s << endl; return 0; }
[ "assignment.change" ]
878,660
878,661
u951073166
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s.at(i) != s.at(k)) { s.at(i) = '*'; } } cout << s << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s.at(i) != s.at(k - 1)) { s.at(i) = '*'; } } cout << s << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,669
878,670
u584169254
cpp
p03068
//無断転用の一切を禁ずるよ////////////////////////// #include <algorithm> //辞書順はnext_permutationだよ #include <cmath> #include <iomanip> #include <iostream> #include <math.h> #include <queue> #include <random> #include <set> #include <stdio.h> //printするよ #include <string.h> #include <string> #include <time.h> #include <utility> //swapで数値交換するよ #include <vector> #define rt "\n" //改行を最速化するよ #define rep(i, n) for (int i = 0; i < n; i++) #define rop(i, n) for (int i = 1; i <= n; i++) #define drep(i, n) for (int i = n - 1; 0 <= i; i--) #define yes(ans) \ if (ans) \ cout << "yes" << rt; \ else \ cout << "no" << rt; #define Yes(ans) \ if (ans) \ cout << "Yes" << rt; \ else \ cout << "No" << rt; #define YES(ans) \ if (ans) \ cout << "YES" << rt; \ else \ cout << "NO" << rt; #define sort(s) sort(s.begin(), s.end()) #define reve(s) reverse(s.begin(), s.end()) #define asas int ans = 0 #define cncn int cnt = 0 #define please return #define AC 0 ///////////////////////////////////////////////// using namespace std; typedef vector<int> vint; typedef vector<string> vstr; typedef vector<char> vcha; typedef long long int llint; typedef pair<int, int> pint; typedef pair<llint, llint> pllint; typedef vector<llint> vllint; typedef vector<pint> vpint; typedef vector<pair<llint, llint>> vpllint; typedef vector<vector<int>> vvint; typedef vector<vector<llint>> vvllint; typedef vector<vector<pint>> vvpint; typedef vector<bool> vbool; ////////////////////////////////////////////////// //最大公約数(GCD)を求めるよ //最小公倍数(LCM)は<< (A+B)÷ GCD  >>で求まるよ long long GCD(long long a, long long b) { if (b == 0) return a; else return GCD(b, a % b); } int main(void) { int n, k; string s; cin >> n >> s >> k; rep(i, n) { if (s[i] != s[k]) s[i] = '*'; } cout << s << rt; please AC; } // abc : 141 , aoj : ITP1_6_D // sort, abs, swap, reverse, max, min //__gcd, sbstring, erase, push_back,stoll、stoi
//無断転用の一切を禁ずるよ////////////////////////// #include <algorithm> //辞書順はnext_permutationだよ #include <cmath> #include <iomanip> #include <iostream> #include <math.h> #include <queue> #include <random> #include <set> #include <stdio.h> //printするよ #include <string.h> #include <string> #include <time.h> #include <utility> //swapで数値交換するよ #include <vector> #define rt "\n" //改行を最速化するよ #define rep(i, n) for (int i = 0; i < n; i++) #define rop(i, n) for (int i = 1; i <= n; i++) #define drep(i, n) for (int i = n - 1; 0 <= i; i--) #define yes(ans) \ if (ans) \ cout << "yes" << rt; \ else \ cout << "no" << rt; #define Yes(ans) \ if (ans) \ cout << "Yes" << rt; \ else \ cout << "No" << rt; #define YES(ans) \ if (ans) \ cout << "YES" << rt; \ else \ cout << "NO" << rt; #define sort(s) sort(s.begin(), s.end()) #define reve(s) reverse(s.begin(), s.end()) #define asas int ans = 0 #define cncn int cnt = 0 #define please return #define AC 0 ///////////////////////////////////////////////// using namespace std; typedef vector<int> vint; typedef vector<string> vstr; typedef vector<char> vcha; typedef long long int llint; typedef pair<int, int> pint; typedef pair<llint, llint> pllint; typedef vector<llint> vllint; typedef vector<pint> vpint; typedef vector<pair<llint, llint>> vpllint; typedef vector<vector<int>> vvint; typedef vector<vector<llint>> vvllint; typedef vector<vector<pint>> vvpint; typedef vector<bool> vbool; ////////////////////////////////////////////////// //最大公約数(GCD)を求めるよ //最小公倍数(LCM)は<< (A+B)÷ GCD  >>で求まるよ long long GCD(long long a, long long b) { if (b == 0) return a; else return GCD(b, a % b); } int main(void) { int n, k; string s; cin >> n >> s >> k; rep(i, n) { if (s[i] != s[k - 1]) s[i] = '*'; } cout << s << rt; please AC; } // abc : 141 , aoj : ITP1_6_D // sort, abs, swap, reverse, max, min //__gcd, sbstring, erase, push_back,stoll、stoi
[ "control_flow.branch.if.condition.change" ]
878,675
878,676
u742306624
cpp
p03068
#include <bits/stdc++.h> #include <iostream> #include <string> #include <vector> #define pan(i, n) for (int i = 0; i < n; i++) #define ll long long int using namespace std; int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; char c[n]; strcpy(c, s.c_str()); char a = c[k]; pan(i, n) { if (c[i] != a) { cout << "*"; } else { cout << c[i]; } } }
#include <bits/stdc++.h> #include <iostream> #include <string> #include <vector> #define pan(i, n) for (int i = 0; i < n; i++) #define ll long long int using namespace std; int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; char c[n]; strcpy(c, s.c_str()); char a = c[k - 1]; pan(i, n) { if (c[i] != a) { cout << "*"; } else { cout << c[i]; } } }
[ "assignment.change" ]
878,684
878,685
u116744073
cpp
p03068
#include <bits/stdc++.h> #define rep(i, a, n) for (int i = a; i < n; i++) #define int long long using namespace std; typedef pair<int, int> P; const int mod = 1000000007; const int INF = 1e18; signed main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n, k; string s; cin >> n >> s >> k; rep(i, 0, n) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; }
#include <bits/stdc++.h> #define rep(i, a, n) for (int i = a; i < n; i++) #define int long long using namespace std; typedef pair<int, int> P; const int mod = 1000000007; const int INF = 1e18; signed main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n, k; string s; cin >> n >> s >> k; k--; rep(i, 0, n) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; }
[ "expression.unary.arithmetic.add" ]
878,708
878,709
u984730891
cpp
p03068
#include <algorithm> #include <iostream> #include <string> #include <vector> using namespace std; #define rep(i, n) for (int i = 0; i < n; i++) int main() { int n, l; string str, str2; cin >> n; cin >> str; cin >> l; str2 = str[l - 1]; rep(i, n) { if (str[i] == str2[0]) { str[i] = '*'; } } cout << str; return 0; }
#include <algorithm> #include <iostream> #include <string> #include <vector> using namespace std; #define rep(i, n) for (int i = 0; i < n; i++) int main() { int n, l; string str, str2; cin >> n; cin >> str; cin >> l; str2 = str[l - 1]; rep(i, n) { if (str[i] != str2[0]) { str[i] = '*'; } } cout << str; return 0; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,714
878,715
u702051956
cpp
p03068
#include <bits/stdc++.h> #include <math.h> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; char c[N]; for (int i = 0; i < N; i++) { if (S[K] != S[i]) c[i] = '*'; else c[i] = S[K]; cout << c[i]; } cout << endl; }
#include <bits/stdc++.h> #include <math.h> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; char c[N]; for (int i = 0; i < N; i++) { if (S[K - 1] != S[i]) c[i] = '*'; else c[i] = S[K - 1]; cout << c[i]; } cout << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one", "assignment.change" ]
878,720
878,721
u937275419
cpp
p03068
#include <algorithm> #include <cmath> #include <cstdio> #include <deque> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <tuple> #include <utility> #include <vector> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; using ll = long long; template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } int main() { int n, k; string s; cin >> n >> s >> k; rep(i, n) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; return 0; }
#include <algorithm> #include <cmath> #include <cstdio> #include <deque> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <tuple> #include <utility> #include <vector> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; using ll = long long; template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } int main() { int n, k; string s; cin >> n >> s >> k; k--; rep(i, n) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; return 0; }
[ "expression.unary.arithmetic.add" ]
878,722
878,723
u608258653
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] - s[k] != 0) s[i] = '*'; } cout << s << "\n"; return 0; }
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] - s[k - 1] != 0) s[i] = '*'; } cout << s << "\n"; return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,726
878,727
u211227348
cpp
p03068
#include <stdio.h> int main() { int N, K; scanf("%d", &N); char mozi[N], m[1]; scanf("%s", mozi); scanf("%d", &K); m[0] = mozi[K]; for (int i = 0; i < N; i++) { if (mozi[i] != m[0]) mozi[i] = '*'; } printf("%s\n", mozi); return 0; }
#include <stdio.h> int main() { int N, K; scanf("%d", &N); char mozi[N], m[1]; scanf("%s", mozi); scanf("%d", &K); m[0] = mozi[K - 1]; for (int i = 0; i < N; i++) { if (mozi[i] != m[0]) mozi[i] = '*'; } printf("%s\n", mozi); return 0; }
[ "assignment.change" ]
878,730
878,731
u456658814
cpp
p03068
#include <stdio.h> int main() { int N, K; scanf("%d", &N); char mozi[N], m[1]; scanf("%s", mozi); scanf("%d", &K); m[0] = mozi[K]; for (int i = 0; i < N; i++) { if (mozi[i] == m[0]) mozi[i] = '*'; } printf("%s\n", mozi); return 0; }
#include <stdio.h> int main() { int N, K; scanf("%d", &N); char mozi[N], m[1]; scanf("%s", mozi); scanf("%d", &K); m[0] = mozi[K - 1]; for (int i = 0; i < N; i++) { if (mozi[i] != m[0]) mozi[i] = '*'; } printf("%s\n", mozi); return 0; }
[ "assignment.change", "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,732
878,731
u456658814
cpp
p03068
#include <stdio.h> int main() { int N, K; scanf("%d", N); char mozi[N], m[1]; scanf("%s", mozi); scanf("%d", &K); m[0] = mozi[K]; for (int i = 0; i < N; i++) { if (mozi[i] == m[0]) mozi[i] = '*'; } printf("%s", mozi); return 0; }
#include <stdio.h> int main() { int N, K; scanf("%d", &N); char mozi[N], m[1]; scanf("%s", mozi); scanf("%d", &K); m[0] = mozi[K - 1]; for (int i = 0; i < N; i++) { if (mozi[i] != m[0]) mozi[i] = '*'; } printf("%s\n", mozi); return 0; }
[ "expression.operation.unary.reference.add", "assignment.change", "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change", "literal.string.change", "call.arguments.change", "io.output.change", "io.output.newline.add" ]
878,733
878,731
u456658814
cpp
p03068
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) int int_len(int n) { int s = 0; while (n != 0) s++, n /= 10; return s; } int int_sum(int n) { int m = 0, s = 0, a = n; while (a != 0) s++, a /= 10; for (int i = s - 1; i >= 0; i--) m += n / ((int)pow(10, i)) - (n / ((int)pow(10, i + 1))) * 10; return m; } int vec_sum(vector<int> v) { int n = 0; for (int i = 0; i < v.size(); i++) n += v[i]; return n; } int main() { int a, b; string s; char c; cin >> a >> s >> b; c = s[b - 1]; rep(i, a) { if (s[i] == c) { cout << 'c'; } else { cout << '*'; } } cout << endl; }
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) int int_len(int n) { int s = 0; while (n != 0) s++, n /= 10; return s; } int int_sum(int n) { int m = 0, s = 0, a = n; while (a != 0) s++, a /= 10; for (int i = s - 1; i >= 0; i--) m += n / ((int)pow(10, i)) - (n / ((int)pow(10, i + 1))) * 10; return m; } int vec_sum(vector<int> v) { int n = 0; for (int i = 0; i < v.size(); i++) n += v[i]; return n; } int main() { int a, b; string s; char c; cin >> a >> s >> b; c = s[b - 1]; rep(i, a) { if (s[i] == c) { cout << c; } else { cout << '*'; } } cout << endl; }
[]
878,734
878,735
u264265458
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; cin >> n; string s; cin >> s; cin >> k; for (int i = 0; i < n; i++) { if (s[i] == s[k]) cout << s[i]; else cout << "*"; } cout << "\n"; return 0; }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; cin >> n; string s; cin >> s; cin >> k; for (int i = 0; i < n; i++) { if (s[i] == s[k - 1]) cout << s[i]; else cout << "*"; } cout << "\n"; return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,743
878,744
u031686335
cpp
p03068
#include <iostream> using namespace std; int main() { int n, k; char s[10000]; cin >> n; for (int i = 0; i < n; i++) cin >> s[i]; cin >> k; for (int i = 0; i < n; i++) { if (s[k] == s[i]) cout << s[i]; else cout << "*"; } cout << endl; return 0; }
#include <iostream> using namespace std; int main() { int n, k; char s[10000]; cin >> n; for (int i = 0; i < n; i++) cin >> s[i]; cin >> k; for (int i = 0; i < n; i++) { if (s[k - 1] == s[i]) cout << s[i]; else cout << "*"; } cout << endl; return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,755
878,756
u490965711
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; char s[15]; cin >> n; for (int i = 0; i < n; i++) cin >> s[i]; cin >> k; for (int i = 0; i < n; i++) if (s[k] != s[i]) s[i] = '*'; for (int i = 0; i < n; i++) cout << s[i]; cout << '\n'; return 0; }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; char s[15]; cin >> n; for (int i = 1; i <= n; i++) cin >> s[i]; cin >> k; for (int i = 1; i <= n; i++) if (s[k] != s[i]) s[i] = '*'; for (int i = 1; i <= n; i++) cout << s[i]; cout << '\n'; return 0; }
[ "literal.number.change", "variable_declaration.value.change", "control_flow.loop.for.initializer.change", "expression.off_by_one", "expression.operator.compare.change", "control_flow.loop.for.condition.change", "expression.operation.binary.change" ]
878,757
878,758
u623468376
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { char S[1000]; int N, K; cin >> N; cin >> S; cin >> K; for (int i = 0; i < N; i++) { if (S[i] == S[K]) cout << S[i]; else cout << "*"; } return 0; }
#include <bits/stdc++.h> using namespace std; int main() { char S[1000]; int N, K; cin >> N; cin >> S; cin >> K; K--; for (int i = 0; i < N; i++) { if (S[i] == S[K]) cout << S[i]; else cout << "*"; } return 0; }
[ "expression.unary.arithmetic.add" ]
878,773
878,774
u757389058
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; string S; cin >> S; int K; cin >> K; for (int i = 0; i < N; i++) { if (S.at(i) != S.at(K)) { S.at(i) = '*'; } } cout << S << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; string S; cin >> S; int K; cin >> K; for (int i = 0; i < N; i++) { if (S.at(i) != S.at(K - 1)) { S.at(i) = '*'; } } cout << S << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,775
878,776
u410041382
cpp
p03068
#include <iostream> using namespace std; int main() { int N, K; string S; cin >> N; cin >> S; cin >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K]) { S[i] = '*'; } } cout << S; }
#include <iostream> using namespace std; int main() { int N, K; string S; cin >> N; cin >> S; cin >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) { S[i] = '*'; } } cout << S; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,787
878,788
u849073847
cpp
p03068
#include <stdio.h> int main(void) { char str[100] = {0}; int n, k; scanf("%d", &n); getchar(); fgets(str, 100, stdin); scanf("%d", &k); getchar(); for (int i = 0; i < n; i++) { if (str[i] == str[k - 1]) { str[i] = '*'; } } printf("%s", str); return 0; }
#include <stdio.h> int main(void) { char str[100] = {0}; int n, k; scanf("%d", &n); getchar(); fgets(str, 100, stdin); scanf("%d", &k); getchar(); for (int i = 0; i < n; i++) { if (str[i] != str[k - 1]) { str[i] = '*'; } } printf("%s", str); return 0; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,789
878,790
u337266378
cpp
p03068
#include <algorithm> #include <cmath> #include <iostream> #include <string> using namespace std; int n, k; string s; char x; int main() { cin >> n >> s >> k; x = s[k]; for (int i = 0; i < n; i++) { if (x != s[i]) s[i] = '*'; } cout << s << endl; return 0; }
#include <algorithm> #include <cmath> #include <iostream> #include <string> using namespace std; int n, k; string s; char x; int main() { cin >> n >> s >> k; x = s[k - 1]; for (int i = 0; i < n; i++) { if (x != s[i]) s[i] = '*'; } cout << s << endl; return 0; }
[ "assignment.change" ]
878,796
878,797
u519950235
cpp
p03068
#include <algorithm> #include <cmath> #include <complex> // complex<double> a(1.2 , 2.3);// real(): 1.2, imag()2.3 #include <cstring> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <vector> using namespace std; #define MOD 1000000007 #define ll long long #define ld long double #define FOR(i, a, b) for (ll i = (ll)a; i < (ll)b; i++) #define rep(i, n) FOR(i, 0, n) #define pb push_back #define mp make_pair #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() #define rmsame(a) sort(all(a)), a.erase(unique(all(a)), a.end()) #define rmvector(a, b) \ rep(i, a.size()) rep(j, b.size()) if (a[i] == b[j]) { \ a.erase(a.begin() + i); \ i--; \ break; \ } #define pq_pair_tB \ priority_queue<pair<ll, ll>, vector<pair<ll, ll>>, greater<pair<ll, ll>>> #define pq_pair_ts priority_queue<pair<ll, ll>> //第二成分の大きさが関係ない template <typename X> bool exist(vector<X> vec, X item) { return find(all(vec), item) != vec.end(); } ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); } ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } ll power(ll x, ll n) { if (n == 0) return 1; return (n % 2) ? x * power(x, n - 1) % MOD : power(x * x % MOD, n / 2); } int main() { cin.tie(0); ios::sync_with_stdio(false); ll N; string S; ll K; cin >> N >> S >> K; rep(i, S.size()) { if (S[i] == S[K - 1]) cout << S[i]; else cout << "*" << endl; } cout << endl; // cout << fixed << setprecision(16) << ans << endl; return 0; }
#include <algorithm> #include <cmath> #include <complex> // complex<double> a(1.2 , 2.3);// real(): 1.2, imag()2.3 #include <cstring> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <vector> using namespace std; #define MOD 1000000007 #define ll long long #define ld long double #define FOR(i, a, b) for (ll i = (ll)a; i < (ll)b; i++) #define rep(i, n) FOR(i, 0, n) #define pb push_back #define mp make_pair #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() #define rmsame(a) sort(all(a)), a.erase(unique(all(a)), a.end()) #define rmvector(a, b) \ rep(i, a.size()) rep(j, b.size()) if (a[i] == b[j]) { \ a.erase(a.begin() + i); \ i--; \ break; \ } #define pq_pair_tB \ priority_queue<pair<ll, ll>, vector<pair<ll, ll>>, greater<pair<ll, ll>>> #define pq_pair_ts priority_queue<pair<ll, ll>> //第二成分の大きさが関係ない template <typename X> bool exist(vector<X> vec, X item) { return find(all(vec), item) != vec.end(); } ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); } ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } ll power(ll x, ll n) { if (n == 0) return 1; return (n % 2) ? x * power(x, n - 1) % MOD : power(x * x % MOD, n / 2); } int main() { cin.tie(0); ios::sync_with_stdio(false); ll N; string S; ll K; cin >> N >> S >> K; rep(i, S.size()) { if (S[i] == S[K - 1]) cout << S[i]; else cout << "*"; } cout << endl; // cout << fixed << setprecision(16) << ans << endl; return 0; }
[ "expression.operation.binary.remove" ]
878,800
878,801
u866107333
cpp
p03068
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x, to) for (x = 0; x < (to); x++) #define FORR(x, arr) for (auto &x : arr) #define ITR(x, c) for (__typeof(c.begin()) x = c.begin(); x != c.end(); x++) #define ALL(a) (a.begin()), (a.end()) #define ZERO(a) memset(a, 0, sizeof(a)) #define MINUS(a) memset(a, 0xff, sizeof(a)) //------------------------------------------------------- int N, K; string S; void solve() { int i, j, k, l, r, x, y; string s; cin >> N >> S >> K; FOR(i, N) if (S[i] = S[K - 1]) S[i] = '*'; cout << S << endl; } int main(int argc, char **argv) { string s; int i; if (argc == 1) ios::sync_with_stdio(false), cin.tie(0); FOR(i, argc - 1) s += argv[i + 1], s += '\n'; FOR(i, s.size()) ungetc(s[s.size() - 1 - i], stdin); cout.tie(0); solve(); return 0; }
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x, to) for (x = 0; x < (to); x++) #define FORR(x, arr) for (auto &x : arr) #define ITR(x, c) for (__typeof(c.begin()) x = c.begin(); x != c.end(); x++) #define ALL(a) (a.begin()), (a.end()) #define ZERO(a) memset(a, 0, sizeof(a)) #define MINUS(a) memset(a, 0xff, sizeof(a)) //------------------------------------------------------- int N, K; string S; void solve() { int i, j, k, l, r, x, y; string s; cin >> N >> S >> K; FOR(i, N) if (S[i] != S[K - 1]) S[i] = '*'; cout << S << endl; } int main(int argc, char **argv) { string s; int i; if (argc == 1) ios::sync_with_stdio(false), cin.tie(0); FOR(i, argc - 1) s += argv[i + 1], s += '\n'; FOR(i, s.size()) ungetc(s[s.size() - 1 - i], stdin); cout.tie(0); solve(); return 0; }
[ "control_flow.branch.if.condition.change" ]
878,802
878,803
u452725238
cpp
p03068
#include <iostream> using namespace std; int main(void) { int N, K; string s; cin >> N >> s >> K; for (int i = 0; i < s.size(); i++) { if (s[i] != s[K]) s[i] = '*'; } cout << s << endl; }
#include <iostream> using namespace std; int main(void) { int N, K; string s; cin >> N >> s >> K; for (int i = 0; i < s.size(); i++) { if (s[i] != s[K - 1]) s[i] = '*'; } cout << s << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,804
878,805
u843558164
cpp
p03068
#include <bits/stdc++.h> #define mins(a, b) a = min(a, b) #define maxs(a, b) a = max(a, b) template <typename T> std::string to_string(const T &n) { std::ostringstream stm; stm << n; return stm.str(); } using namespace std; const long long INF = 9000000000000000; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] == s[k - 1]) cout << s[i]; else cout << '*'; } cout << endl; }
#include <bits/stdc++.h> #define mins(a, b) a = min(a, b) #define maxs(a, b) a = max(a, b) template <typename T> std::string to_string(const T &n) { std::ostringstream stm; stm << n; return stm.str(); } using namespace std; const long long INF = 9000000000000000; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] == s[k - 1]) cout << s[i]; else cout << '*'; } cout << endl; }
[ "literal.string.change", "io.output.change" ]
878,808
878,809
u127856129
cpp
p03068
#include <bits/stdc++.h> #define mins(a, b) a = min(a, b) #define maxs(a, b) a = max(a, b) template <typename T> std::string to_string(const T &n) { std::ostringstream stm; stm << n; return stm.str(); } using namespace std; const long long INF = 9000000000000000; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] == s[k - 1]) cout << s[i]; else cout << "*"; } cout << endl; }
#include <bits/stdc++.h> #define mins(a, b) a = min(a, b) #define maxs(a, b) a = max(a, b) template <typename T> std::string to_string(const T &n) { std::ostringstream stm; stm << n; return stm.str(); } using namespace std; const long long INF = 9000000000000000; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] == s[k - 1]) cout << s[i]; else cout << '*'; } cout << endl; }
[]
878,810
878,809
u127856129
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s.at(i) != s.at(k)) { s.at(i) = '*'; } } cout << s << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s.at(i) != s.at(k - 1)) { s.at(i) = '*'; } } cout << s << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,815
878,816
u646051775
cpp
p03068
#include "bits/stdc++.h" using namespace std; void solve(void) { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { cout << (s[i] == s[k] ? s[k] : '*'); } cout << endl; } int main() { solve(); // cout << "yui(*-v・)yui" << endl; return 0; }
#include "bits/stdc++.h" using namespace std; void solve(void) { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { cout << (s[i] == s[k - 1] ? s[k - 1] : '*'); } cout << endl; } int main() { solve(); // cout << "yui(*-v・)yui" << endl; return 0; }
[ "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,823
878,824
u344412812
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; char a = S.at(K - 1); for (int i = 0; i < N; i++) { if (S.at(i) != a) S.at(i) = '+'; } cout << S << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; char a = S.at(K - 1); for (int i = 0; i < N; i++) { if (S.at(i) != a) S.at(i) = '*'; } cout << S << endl; }
[ "literal.string.change", "expression.operator.arithmetic.change", "assignment.value.change" ]
878,844
878,845
u222866518
cpp
p03068
#include <iostream> int main() { int N; std::string S; int K; std::cin >> N >> S >> K; char P; P = S[K - 1]; for (int i = 0; i < N; i++) { if (S[i] != P) { std::cout << "*"; } else { std::cout << S[i]; } } std::cout << std::endl; return 0; }
#include <iostream> int main() { int N; std::string S; int K; std::cin >> N >> S >> K; char P; P = S[K - 1]; for (int i = 0; i < N; i++) { if (S[i] != P) { std::cout << "*"; } else { std::cout << S[i]; } } std::cout << std::endl; return 0; }
[ "literal.string.change", "expression.operation.binary.change" ]
878,856
878,857
u329731898
cpp
p03068
#include <iostream> #include <string> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) { cout << S[i]; } else { cout << "*"; } } cout << endl; return 0; }
#include <iostream> #include <string> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] == S[K - 1]) { cout << S[i]; } else { cout << "*"; } } cout << endl; return 0; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,858
878,859
u005317312
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char target = s[k]; for (int i = 0; i < n; i++) { if (s[i] != target) s[i] = '*'; } cout << s << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char target = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] != target) s[i] = '*'; } cout << s << endl; }
[ "assignment.change" ]
878,868
878,869
u351482714
cpp
p03068
#include <bits/stdc++.h> using namespace std; #define Rep(i, a, b) for (int i = (a); i < (b); i++) #define rep(i, n) for (int i = 0; i < (n); i++) #define all(x) (x).begin(), (x).end() #define ll long long int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; rep(i, s.length()) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; }
#include <bits/stdc++.h> using namespace std; #define Rep(i, a, b) for (int i = (a); i < (b); i++) #define rep(i, n) for (int i = 0; i < (n); i++) #define all(x) (x).begin(), (x).end() #define ll long long int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; rep(i, s.length()) { if (s[i] != s[k - 1]) s[i] = '*'; } cout << s << endl; }
[ "control_flow.branch.if.condition.change" ]
878,870
878,871
u934105772
cpp
p03068
#include <bits/stdc++.h> using namespace std; typedef long long ll; const long long INF = 1e18, MOD = 1e9 + 7; int main() { ll n, k; string s; cin >> n >> s >> k; for (int i = 0; i < s.length(); i++) { if (s[i] == s[k]) cout << s[i]; else cout << "*"; } cout << endl; }
#include <bits/stdc++.h> using namespace std; typedef long long ll; const long long INF = 1e18, MOD = 1e9 + 7; int main() { ll n, k; string s; cin >> n >> s >> k; k--; for (int i = 0; i < s.length(); i++) { if (s[i] == s[k]) cout << s[i]; else cout << "*"; } cout << endl; }
[ "expression.unary.arithmetic.add" ]
878,874
878,875
u952437626
cpp
p03068
#include <iostream> #include <string> int main() { std::string s; int n, k; std::cin >> n >> s >> k; const char &c = s[k]; for (int i = 0; i < n; ++i) { std::cout << ((s[i] != c) ? '*' : s[i]); } return 0; }
#include <iostream> #include <string> int main() { std::string s; int n, k; std::cin >> n >> s >> k; const char &c = s[k - 1]; for (int i = 0; i < n; ++i) { std::cout << ((s[i] != c) ? '*' : s[i]); } return 0; }
[ "assignment.change" ]
878,884
878,885
u186898529
cpp
p03068
#include "bits/stdc++.h" using namespace std; #define int long long #define endl '\n' #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, a, b) for (int i = int(a); i < int(b); i++) #define pb emplace_back #define all(x) (x).begin(), (x).end() int mod = 1e9 + 7; int mod2 = 998244353; const int INF = 1e9; signed main() { int n, k; string s; cin >> n >> s >> k; k++; rep(i, n) { if (s[k] == s[i]) cout << s[k]; else cout << "*"; } cout << endl; } // `.`..`(WNNNNNNMNWWWH9rttwgHM8OtttwwVtttrrtrttrw0rtrtwrrrtrZUAOOrrrXWppHMHyZHpWHMHMkWWVHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`.`..`(WMNMHfWH9ZtrtAdNM8ttttOwVtrrtrrtrrrrrdrrttrZkOrrrrrrXWyrtrrZWWWWMmwXWppWHHMmWHkWMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // .`.```_..(HMfWH9OtttwXWHBrttrOw0rttrOvrrrtrZrrRrtrrrtZHwrrrrrwwZHyrrrrZWWpWMmwWppkWHHMkHNkVWMNNNNN#NN#NN#NN#NN#NN#NN#NN#NN#NN#NNNN // .``.. // ..HNfWW9wtrrOdWHM0trttOdSrtrtwwrtrtrw0twSrtOrrrrZHwtrrrrrXwdWwrrrrXHppWNkXWpkvWH@MkHMHkWMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`. // -jMWWXXwtrttO0d@BrtrttwXVrtrrwVrrrtrtXrrd0rrXrrrrrZWyrrrrrrZXwWyZOrrvWWpWMkZHbkwrdHMMKMMNHkHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`. // v8Xdk9ttttrOwXM0tttrtwXwwrtrw0rrtrrtwKrrd0rrXrtrrrrZHkwrrrrrrXkVkrrrvrZHWpHHkWkwrwvVHHNWMMMMkWMNNNNNNN#NN#NN#NN#NN#NN#NN#NNNN // .. // JHZdbKOrrrtrtwWWOOttrOwSzVrOrw0rrttrrrdRrrdZrrdOrtrtrrZHkXwrrrrrZWXHwwrrrvWWWWNkWkvrrrwWM@RMMMNNmWMNNNNNNNNNNNNNNNNNNNNNNNNNNNN // . // .JGXHStttttrtwW9OrtrrrdSX0rtrdStrtrtrrwHVrrdkrrtSrrrrrrrdMyXrrrrrvXWXWmwvrrvdHWWNkWyvvvvvT@MNWM#N#MNWMMNNNNNNNNNNNNNNNNNNNNNNNNN // (.zqHXZtrttrrOwU0trttrOdWX0OtOdRrrtrrrrrdNrrrdkrrrXOwrrrrrrdNySrrrrrwXXkUmvvwvrZHWfNkUkvwvvvdMMMRM#MMNNNkMMNNNNNN#NN#NN#NN#NN#NNNN // (wdS0OttrtOOrwSrtttrrtwKukrrrwKrrrrrtrrwW@rrrXKrrrZkr0OrrrrrWNwkrvvrrvzXkXHwvvrvwWVVHkUyrvvvvZHMMNWMMNNNNNkWMNNNNNNNNNNNNNNNNNNNNN // wWtrrttrrOwrwStrttrtrwWZXOrtwX0rrrttrrrXMSrrrXWrrrrXrwvrrrrvZHHXkrrrrvrzWkXNyvrvvvWWWHHWwvvvvvwHNMHRM#NNNNNMmWMMNNNNNNNNNNNNNNNNNN // 8OtttrwZwwtwSrrttrrrwdyXwtrrdWrrtrrrrrdWH0rrrXWOrrrwRz0rrvrrrdMHWwvvrrvvXWkWHyrvvvrWWWHkHvvvvvvwWMMMNWMMNNNNNMHWMMNMNNNN#NN#NNNNNN // wttrrdVrZrwWwtOrrrrwdWX0rrtdH0rrrtrrtwWHHrrrrXWRrrvrXXXrrvrrrvXHkSwvvrvrrXWkVHyvvvvwHVWHWRvvvvvvdHdMMMKMNNNNNNNMNkWMNNNNNNNNNNNNNM // ttrrd0rwrOX0rrtrrtwXHXSrwrwHKrtrtrrtrdWH#rrrrdpkrrrrvHwkwvrrvrZWHXkzzvvvvwUWkpNwvrvvZHfVNHwvvvvvzXHWMNMNMNNNNNNNN#NkWMNNNNNNNNNM3> // rrrdSrwwtXSrrtrrrwXWWKwrrrdHXrrrrrrrwWWH#vrrrvWpvrrvrdRXwvrvrvvXHWWwkvvrvvwWWKWHzwvvvXHVWWHvzzzzvzWRHMMMNHMNNNNNNNNMNkMMNNNNNN@<<> // OOd9rw0rdKOtrtrrruXHW0rrrdH#rrrrrrrrdpWp#rrrrrXWkvrvvrWwkrvrrvwwWHpKdvvrrvvXHHfWmdwvzwWHVHWkzzzzzzwWXHMHHNWMNNNNNNNNNMNkMNNNN#z>>> // OdSOwSwwW0rrrrtrwXNW8rrtrWWSrtrrrrrrXpHWHvrrrrXpHrrrvwZHdyvvvvvvXHpHwkvvvvvrXHHfNwXvzzwWWWKHzzzzzzzWSWHHHMMKMNNNNNNNNNNMNKMNN#>>;> // wWwOXrwX8rtrrrrwWWpHrrrrdNNrrrrrrrrwppNWHrvrvrypWwvvrrvXKWvrvrvvZXHHkXzvvvvvwWWWWNdkvvzXHfHWkXzzzzzwWXHHHHNMHMNNNNNNNNNNNNNWMN+>>> // R0rd0rdKrrtrtrrdWHWSrrrwWWDrrrrrrrrXpWHqWvrrrvdWbRvvrvvwWZkvvvrvvXHbHzRvvvvvvdHHpHkWwvzXWHWHHzuzzzzzXXWHHHMHMNHMNNNNNNNNNNNMNWh<>> // wOwSrwXSrtrtrrwHWWMwrrrdNWSrrrrrrrvppWpHprrvrvddWHwvvrrvXHXwvvvrvzXWHkXzvvvvvzWWKWNdRvzzXWWHHXzzzzzzzudWHbH@HNNWMNNNNNNNNNNNNNkHe> // rOXwwwKrrrrrrrXWHHDrrwrdHHXwrrrrrrwpWWbHWvvvrvwHHpHrvvvrXWHWwvvrwwXHkHdkvzvvvvZHHpHKWzzzwWHWHRzzzzuzzzzWHHkHHMMNWMNNNNNNNNNNNNNNKm // rdX0OXSrrtrrrdHHWMXrrrwHWHrrrrrrrrXppqWHWkrrvvwWMHHXwwvvvZWKRvvvvrWHWHwWvzvzzzzXWKWNXRzzwXWWNHzzzzzzzzzXUHkHWMMHNWMNNNNNNNNNNNNNNN // wSwww#rrrrrrwWWHM#vrrrd#WKvrrrrrvvXppmWMWkvvvvwXNNpNvSXzzvdHkkvvzvdWWWRXwzzzzzzdNNpMkHzzzWVHHpXzzzzzzzzdkHkHHHNMHNkMNNNNNNNNNNNNNN // XwSwWwrrrrrrdHWWMKrvrvWHWSrvrvvvvwpppHW#HRwUUUWWMMMMMHHHHmmXHWwvvzwWHbNwRzzzzzzzWWWWHWkzzdXWWWRzzzzzzzuzWWbHHWMNMMNkMNNNNNNNNNNNNN // 8drd#rrrrrrwWWkHMmXmywMfWXrvrrrvrwppWNWMNWvrvvwvW#MNHmdkrvvXHMMmmwzdWpM0WzzzzzzzdHHWNUHzzzWWmHHzzuzzuzuzWXbbNkHMqMHNkHNNNNNNNNNNNN // dSwWSrrrrrrdHHHMHrrrwWMfWvvvrvrrrdppWNW#WWRvvrvvdM?WNHkXkzvvdWMHXHNmHHHkfwzzzzzzXHHpMWHkzuXWHNWXzzuzzuzzXXkkHbHMHMMMMkMNNNNNNNNNNN // Xrd#wrrrrrrXpHWH#rrrvdMWWvrrvrvvrdppWHW#(NWwvvvvwMr~TNHmdkvzvXWMKzzzWMHKXXzzzzzzuWHbHkWKuzdWWHWkzzzuzzuuXXHkHkgHk@H@HHkMNNNNNNNNNN // RvWDrrrrrrwHWkMW#rvvrMMfWwrvrrvvrdppWHW@~?HHuvvrvdb_~?NWkdkzzzUWMkzuuWWHWXuzwzzuzXHHHKWHuzzWW@WRuzuzzzzzduWbHHgMH@HHHMMHMNNNNNNNNN // rdHwrrrrrrXHHWNW#vvvdMMHWkvrvrrvrdppWbWD~~?XKkrrrwMc~~~THHZHwzzWHNkvzwMRdHHzuzzzzXHHWHXNkuzdWHkWuzzuzuzzXzWkHHHMHHHkH@MMNWMNNNNNNN // rdHvrrrrrrWkHHHW#rrrd#dNWKrvrvvrvwbpWWW$...vVkkOrtXb~~~~(WHkWkvwWWMkzzWRXkSWXzzzuwmNWHXHRuuwHMKWzzuzzzuzXzWHWHHMHHHkkMMMHHWNNNNNNN // wW#rrvrrrwHWHMpWNrvrd@(NWWvrrrrrvvWpWXH$..._?dkkttOWl~~~~~?HHdHXXbWMkzUHXWkzzzzzzuHNk#XHHzzukHHXzuzzzuzuXuXqkMHMHMbbkHHH@HNWMNNNNN // dH#rrrvrrdNWWNpHHwrrd@_WHWkrvvrrrrZpWXWr...__?WkWyOvN~~~~~__7HkWkbbkNkzXHZkzzzuzzzWHW#ugbXuzWWHXXuzzuzuuuzXkkHHH@MbkHMHMHMMNWMNNNN // X@KrrvrvrXNHWHpHHHrrdb~(NWHrrrrrrrrXWXWr..`...-7HZkzvn~~~~~~~_TNyHHkHMyzXkXuzzzzuuWHW#uHkkzzWHHXuzzzzuzzuuXHkHHHMNbkHHHHHHMMNWMNNN // WHKvvrvrvXHNMbpHmHkOwb..?HWRrwOrtrtrWKWr`.`.`..._?6dkJn~~~~~~-_~7NHMHbNkuUkzzuzzzuWHW#uHbRzuXHHXzzuuuuzuuzXHkHHMMbkkHkMkkkMMMNUMMN // WHKrrvrrvXqHMpfHHHWkrb...vkHyOrtttttdNXr.`.J>~-((J+ggQkHXHHHmaJz7&JWHMMWkuHXzuuuzzWgHHwHkKuzXMKXuzuuzuzzuzdkHHHHHkHWMHHbkWHMMMNXM# // Wg#rvrvrrXmHNpfHHHMMRd-.._4kfyttttllOHWr`` // <udT"""7"""""TMHHMNHHMNgv4HMRXHXHwuzzzuWHHKXHkHzzXMSWzuzzuzuuzudbkHHHHkkHqHuWkWHHMMMNWM // WHNrvrvvvXHmNppgg@MMMHr..` UkWOlllllldW$..?! ` ` // ?@MMHHMM#NMMmMkXXWkHuzuzuWNHSXHHHuuXNSWuzuuzuzuzuWkHNgMkkkMHSuWkqmqHHMNNK // WHMkvvrvrXHHMppHHHMNMTN_``` 4kWOz====vXP` ` ` // ``.HggmgM@MH###NKkkuXWHzzuXHHMzdMHHuzWNXKzuuzuzuzuuHkHHNMkkHHBuzWkHHHHuHMMM // WHHNzvvrvwHMMppHMMMM>.#L`````?kyy====?0S`` ` ` // ``...dmqqqmmHHHMMM#WRSzuzWHuzXHq#uWHHHzuWHXKzuzzuzuzuXHkHWMNkWM#uzuWHHHHSuuWM# // WM@MkwvvrzXMMHpgHMMM[.MN.`````(HXy1???zd.`` ` ` ` // dHkkqkkqkHHHHHHMMWWXzzuzwWwXHHKXMkHHuXMRXSuuuzuuzuzXHkHdHHWHHXuuwWHqHHuXzXWM // XHHMNyrvvwdW@HpHWMHML MM[` ` `.4kGz<<>Or``` ` // `dWpbbbbbHMMbbbHHMXXuzzuzuzXWHHSXMkHHuXMSXuzzuzzuzuzWkkHWMHMSwuzzXHkHHXuzuWd# // dHHH@NyzwwwWHMHHWMMMR dW]`` ` ```(HZx<<<4.```` `` `` // OZppfppppWfpWpK9NKXuuzuuzuXWHHudMqNHXWNuHuzzuzuzuzuHkHXMMBuuuzuuWkHHUuuuXSMS // wWHMMMMkwwvdNpHHHM#MH-jWP``` `` ```7kI<:<h.``````` `` // ,2OWVVyVVyWWWWIdMKWzuuuzzuXHHSwHHHHKXHHXSuuzuuzuzuXHHHXMXuuuuuuXHHHuzuuXSX#X // wdWHMMMMmwXwHbpMNHMM@b.hb``````````` // 7x1_(>_```````````(x7UUUV0XwvCI1dMWKXuzzuzuWHHudMkgkWbMSXuzzzuzzuzuWkHSW#zXwXuXXWHHuuXXuWXWSX // vvXWHMMHWNkvWHbbMWMMMN_JF.```` `` // `````?1_(_.`.`........(<777=<<<><<+dMXUuzuuuuWWMRwMHWMkWHHXSuuzuzuzzuXqHHXMHUXuXXHHHSuuwuXWud8uH // mzzXWH#zHbHkXNbbWMMMMD~(_``````````````` // .~_`.``.`.`.....___(<~(<<(<<dHkkuuuuuXkHHuWMkHkkkHSXXzuuzuuuuzXHHSd#uuXXWHHXuuuZuXSuqHudS // UHzzXWSXXWbbHHHbWHMH#<~...```` ``````````````.```.` // -_____<~~_<_<~~(jMWSuzuzuXWHMHXMHHHkkH#XSuzzuzuzuzuKkHXMQkWHHWUXuXXUuXUuXHuXBu // .(Smd8wSvXbbbbHHHWHW3___.``````` `` // ``````.```.```.`...._.._~~..~_~~(#WuzuuzXXkHMqMMHMkkkMUXuXzuuwuuzuXkHSWMWUUuuuXXUUuXHXXWSuXHXu // .. JKwSvwzWkkkkHHHH5~~..```````````````````.```.````````.` // .........dWSuuzzzdkHMW@MHMkkkHHXXuzuuXSuzuuWWHd#uuuXXkWSuXXWUXXHUXWHuuu // .`(HXSzzzzwWbkWHNHr_...``````````````````.```````.```````.`.`..`.-.(HKuzzuuwHHMNMHHMkkkHHuZuuzuuXuuuuXkHWMHHHUUuXXXWHXXHHUuXW8uuuu // .-MXWwzzzuzXkHHMHHN-.`````````` // ````````````.`.````.``.```.`.`....-dXUXuzuXHWHMMHHBWHMMMSZuzuuzXXzuuXHHMHMHkHHHHHHHWHHSuXkHWSuuuuX // (#XKzzzzzuzuWHHkWHHp // ``.````````````````````````.````````.....-((-(NSXuzzXHW@D:~`(/1- // .kXuzuuzXSuuzXXkHWMHHHHHHHHMWuuuQXUXWuuuXuXH // MXWzuzzzzzuXHHbHNMMMt`.```````````````````````````.`.` ..-J7"!`` // XKuzzuXHHM9;/<-.J-u!JXXuuzuXWuuuuXHHH#WMNHmkkkuXXkWUXXWXXuuuXqHH // XWzzzzuzzwXHHHH#"````<.````````````````````.``.`...-c"7``` ` ` // `(BzuuuXmHH8<!(- ?_!`jWUuzuuuWuuuzXWHNH> ..7WHHqHmQkWWXXuuuuuXWqHH // SwuzzzXuwXHNHY`` `` <,`.`````````````` `` ..J7=``` ` ` `` // ````.#zuzXXHHH$~`` ```(_(HSuuuzuXSuzuuXHHWCi(` ._ ?WggHHHHWkkkkWHHHHMH // zzzuzuzwWHMY!` ` ` `(&.```````````` ..J7^ `` ` ` ` ` `. .HXuuXWHW#!` ` // ```` (WUuzzuXXSzuuudHHXY$. : (..``.THHkqkHHHgHHMHkkk zzzzzzXHWK`` ` `` ` ` ` // TJ.``````..J7=```` ` ` ` ` `` ` `.8zuXXHHW=` `` // ..(XSuuuuuXWuuuuXHWH5~~` .`_?_,-``.TMMMMMMHkkqqHHH zzuuzdHHkN ` ` ` `` ` // ``(Wm,.(J7!``` ` ``` `` `` ` ` ``` .SzuXWHHY `` // .._~<~~(dSuuuzzXHuuuuXHWHD::?C._.( -`(!_1 ,WHqHHHmqHHHHN zuzXXHHkHM;` ` ` ` // `` ` .;jY= ` .``_`` ` ` ` ` `` ` `.dXuXWm@^ // .._~_.~~~~~(d0uuzuuXHUuuuXHWH5:::::::_.<&._4r?_.;WMMM@MMY"<!` zzXHHHHMHMb`` // `` ` `` `` .J! ` ..`_~ ` ` ` `` ` ` ``.JXXXHY! // .__.....~.~~~-d0wuzuXXHSuuuXWWH$::::;:::;:+- ~`(.i +HqHHkkHL..`. XWHHHMMHMHM; // ` ` ` ` ._`` ...(:.=_` ` ` ` ` ```` // .-dVT7^``````......~~~~~_jWuuuuuXHSuzuXHHH3<;:::::;;j<+z ``` -dHNkkMqkkN..`` // HHHMMHHHHNMN.`` ` ` `!`z(. ~..~ ! . ` `` ` ` ` // ..gHr``````````........~~~~_jWuuuuuXkSuuuXHWHC:;::;;:::+v>:((J<!(WHHMkkHNqkM;`.. // HMMkkHHHHM9?b `` ` ` `` .``. ` ` ` ` ``` 4HkkkH, // ``````.`......~~~~_+KuuuzuXHSuuuXHHK<(::::::<;<J+g9>::;< .4NkkqMHqH]..` // MHkHHHMM$<<:?L` `` ` ` ` ``.` ` !`` ` ` ` ` ` // ?HbkkHx``````.`..`...~~~~_jKuuuuuXHSuuuqMHD<:<;:<++ddNMB3:;::;:<` // `,HkkqH@HH].`` kkHHkHY``` (;?h`` ` ` `` ```` ` ` ` ` ` ` ` ` // ```.4XWbHx```..`......~~~~_gKuuuuXWH0uuuXHH3:;++1z<jgMB3<::::::::~` // `jMkqkHMHHF.`. kHHHH=` . ` _<?L ` ` ` ` ` ` ` ` ` ` ` ` ` ` ?kwWHp // .`.......~_~~(dKuuuuXWHUuuXWH9++z1<;+jWB3::::;;;::;:;_`` MNkqkqMNMF..` HHk@!. // ` ` ` ~?L ` ` `` ` `` `` ` ` ` ` ` ` ` ` // -WuXHh..`.....~~~~(dWuuuXXkHUuuXHH9>:<:++YY<:;::::;:::::;:::+.``?HHkHHHM>`.`
#include "bits/stdc++.h" using namespace std; #define int long long #define endl '\n' #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, a, b) for (int i = int(a); i < int(b); i++) #define pb emplace_back #define all(x) (x).begin(), (x).end() int mod = 1e9 + 7; int mod2 = 998244353; const int INF = 1e9; signed main() { int n, k; string s; cin >> n >> s >> k; k--; rep(i, n) { if (s[k] == s[i]) cout << s[k]; else cout << "*"; } cout << endl; } // `.`..`(WNNNNNNMNWWWH9rttwgHM8OtttwwVtttrrtrttrw0rtrtwrrrtrZUAOOrrrXWppHMHyZHpWHMHMkWWVHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`.`..`(WMNMHfWH9ZtrtAdNM8ttttOwVtrrtrrtrrrrrdrrttrZkOrrrrrrXWyrtrrZWWWWMmwXWppWHHMmWHkWMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // .`.```_..(HMfWH9OtttwXWHBrttrOw0rttrOvrrrtrZrrRrtrrrtZHwrrrrrwwZHyrrrrZWWpWMmwWppkWHHMkHNkVWMNNNNN#NN#NN#NN#NN#NN#NN#NN#NN#NN#NNNN // .``.. // ..HNfWW9wtrrOdWHM0trttOdSrtrtwwrtrtrw0twSrtOrrrrZHwtrrrrrXwdWwrrrrXHppWNkXWpkvWH@MkHMHkWMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`. // -jMWWXXwtrttO0d@BrtrttwXVrtrrwVrrrtrtXrrd0rrXrrrrrZWyrrrrrrZXwWyZOrrvWWpWMkZHbkwrdHMMKMMNHkHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`. // v8Xdk9ttttrOwXM0tttrtwXwwrtrw0rrtrrtwKrrd0rrXrtrrrrZHkwrrrrrrXkVkrrrvrZHWpHHkWkwrwvVHHNWMMMMkWMNNNNNNN#NN#NN#NN#NN#NN#NN#NNNN // .. // JHZdbKOrrrtrtwWWOOttrOwSzVrOrw0rrttrrrdRrrdZrrdOrtrtrrZHkXwrrrrrZWXHwwrrrvWWWWNkWkvrrrwWM@RMMMNNmWMNNNNNNNNNNNNNNNNNNNNNNNNNNNN // . // .JGXHStttttrtwW9OrtrrrdSX0rtrdStrtrtrrwHVrrdkrrtSrrrrrrrdMyXrrrrrvXWXWmwvrrvdHWWNkWyvvvvvT@MNWM#N#MNWMMNNNNNNNNNNNNNNNNNNNNNNNNN // (.zqHXZtrttrrOwU0trttrOdWX0OtOdRrrtrrrrrdNrrrdkrrrXOwrrrrrrdNySrrrrrwXXkUmvvwvrZHWfNkUkvwvvvdMMMRM#MMNNNkMMNNNNNN#NN#NN#NN#NN#NNNN // (wdS0OttrtOOrwSrtttrrtwKukrrrwKrrrrrtrrwW@rrrXKrrrZkr0OrrrrrWNwkrvvrrvzXkXHwvvrvwWVVHkUyrvvvvZHMMNWMMNNNNNkWMNNNNNNNNNNNNNNNNNNNNN // wWtrrttrrOwrwStrttrtrwWZXOrtwX0rrrttrrrXMSrrrXWrrrrXrwvrrrrvZHHXkrrrrvrzWkXNyvrvvvWWWHHWwvvvvvwHNMHRM#NNNNNMmWMMNNNNNNNNNNNNNNNNNN // 8OtttrwZwwtwSrrttrrrwdyXwtrrdWrrtrrrrrdWH0rrrXWOrrrwRz0rrvrrrdMHWwvvrrvvXWkWHyrvvvrWWWHkHvvvvvvwWMMMNWMMNNNNNMHWMMNMNNNN#NN#NNNNNN // wttrrdVrZrwWwtOrrrrwdWX0rrtdH0rrrtrrtwWHHrrrrXWRrrvrXXXrrvrrrvXHkSwvvrvrrXWkVHyvvvvwHVWHWRvvvvvvdHdMMMKMNNNNNNNMNkWMNNNNNNNNNNNNNM // ttrrd0rwrOX0rrtrrtwXHXSrwrwHKrtrtrrtrdWH#rrrrdpkrrrrvHwkwvrrvrZWHXkzzvvvvwUWkpNwvrvvZHfVNHwvvvvvzXHWMNMNMNNNNNNNN#NkWMNNNNNNNNNM3> // rrrdSrwwtXSrrtrrrwXWWKwrrrdHXrrrrrrrwWWH#vrrrvWpvrrvrdRXwvrvrvvXHWWwkvvrvvwWWKWHzwvvvXHVWWHvzzzzvzWRHMMMNHMNNNNNNNNMNkMMNNNNNN@<<> // OOd9rw0rdKOtrtrrruXHW0rrrdH#rrrrrrrrdpWp#rrrrrXWkvrvvrWwkrvrrvwwWHpKdvvrrvvXHHfWmdwvzwWHVHWkzzzzzzwWXHMHHNWMNNNNNNNNNMNkMNNNN#z>>> // OdSOwSwwW0rrrrtrwXNW8rrtrWWSrtrrrrrrXpHWHvrrrrXpHrrrvwZHdyvvvvvvXHpHwkvvvvvrXHHfNwXvzzwWWWKHzzzzzzzWSWHHHMMKMNNNNNNNNNNMNKMNN#>>;> // wWwOXrwX8rtrrrrwWWpHrrrrdNNrrrrrrrrwppNWHrvrvrypWwvvrrvXKWvrvrvvZXHHkXzvvvvvwWWWWNdkvvzXHfHWkXzzzzzwWXHHHHNMHMNNNNNNNNNNNNNWMN+>>> // R0rd0rdKrrtrtrrdWHWSrrrwWWDrrrrrrrrXpWHqWvrrrvdWbRvvrvvwWZkvvvrvvXHbHzRvvvvvvdHHpHkWwvzXWHWHHzuzzzzzXXWHHHMHMNHMNNNNNNNNNNNMNWh<>> // wOwSrwXSrtrtrrwHWWMwrrrdNWSrrrrrrrvppWpHprrvrvddWHwvvrrvXHXwvvvrvzXWHkXzvvvvvzWWKWNdRvzzXWWHHXzzzzzzzudWHbH@HNNWMNNNNNNNNNNNNNkHe> // rOXwwwKrrrrrrrXWHHDrrwrdHHXwrrrrrrwpWWbHWvvvrvwHHpHrvvvrXWHWwvvrwwXHkHdkvzvvvvZHHpHKWzzzwWHWHRzzzzuzzzzWHHkHHMMNWMNNNNNNNNNNNNNNKm // rdX0OXSrrtrrrdHHWMXrrrwHWHrrrrrrrrXppqWHWkrrvvwWMHHXwwvvvZWKRvvvvrWHWHwWvzvzzzzXWKWNXRzzwXWWNHzzzzzzzzzXUHkHWMMHNWMNNNNNNNNNNNNNNN // wSwww#rrrrrrwWWHM#vrrrd#WKvrrrrrvvXppmWMWkvvvvwXNNpNvSXzzvdHkkvvzvdWWWRXwzzzzzzdNNpMkHzzzWVHHpXzzzzzzzzdkHkHHHNMHNkMNNNNNNNNNNNNNN // XwSwWwrrrrrrdHWWMKrvrvWHWSrvrvvvvwpppHW#HRwUUUWWMMMMMHHHHmmXHWwvvzwWHbNwRzzzzzzzWWWWHWkzzdXWWWRzzzzzzzuzWWbHHWMNMMNkMNNNNNNNNNNNNN // 8drd#rrrrrrwWWkHMmXmywMfWXrvrrrvrwppWNWMNWvrvvwvW#MNHmdkrvvXHMMmmwzdWpM0WzzzzzzzdHHWNUHzzzWWmHHzzuzzuzuzWXbbNkHMqMHNkHNNNNNNNNNNNN // dSwWSrrrrrrdHHHMHrrrwWMfWvvvrvrrrdppWNW#WWRvvrvvdM?WNHkXkzvvdWMHXHNmHHHkfwzzzzzzXHHpMWHkzuXWHNWXzzuzzuzzXXkkHbHMHMMMMkMNNNNNNNNNNN // Xrd#wrrrrrrXpHWH#rrrvdMWWvrrvrvvrdppWHW#(NWwvvvvwMr~TNHmdkvzvXWMKzzzWMHKXXzzzzzzuWHbHkWKuzdWWHWkzzzuzzuuXXHkHkgHk@H@HHkMNNNNNNNNNN // RvWDrrrrrrwHWkMW#rvvrMMfWwrvrrvvrdppWHW@~?HHuvvrvdb_~?NWkdkzzzUWMkzuuWWHWXuzwzzuzXHHHKWHuzzWW@WRuzuzzzzzduWbHHgMH@HHHMMHMNNNNNNNNN // rdHwrrrrrrXHHWNW#vvvdMMHWkvrvrrvrdppWbWD~~?XKkrrrwMc~~~THHZHwzzWHNkvzwMRdHHzuzzzzXHHWHXNkuzdWHkWuzzuzuzzXzWkHHHMHHHkH@MMNWMNNNNNNN // rdHvrrrrrrWkHHHW#rrrd#dNWKrvrvvrvwbpWWW$...vVkkOrtXb~~~~(WHkWkvwWWMkzzWRXkSWXzzzuwmNWHXHRuuwHMKWzzuzzzuzXzWHWHHMHHHkkMMMHHWNNNNNNN // wW#rrvrrrwHWHMpWNrvrd@(NWWvrrrrrvvWpWXH$..._?dkkttOWl~~~~~?HHdHXXbWMkzUHXWkzzzzzzuHNk#XHHzzukHHXzuzzzuzuXuXqkMHMHMbbkHHH@HNWMNNNNN // dH#rrrvrrdNWWNpHHwrrd@_WHWkrvvrrrrZpWXWr...__?WkWyOvN~~~~~__7HkWkbbkNkzXHZkzzzuzzzWHW#ugbXuzWWHXXuzzuzuuuzXkkHHH@MbkHMHMHMMNWMNNNN // X@KrrvrvrXNHWHpHHHrrdb~(NWHrrrrrrrrXWXWr..`...-7HZkzvn~~~~~~~_TNyHHkHMyzXkXuzzzzuuWHW#uHkkzzWHHXuzzzzuzzuuXHkHHHMNbkHHHHHHMMNWMNNN // WHKvvrvrvXHNMbpHmHkOwb..?HWRrwOrtrtrWKWr`.`.`..._?6dkJn~~~~~~-_~7NHMHbNkuUkzzuzzzuWHW#uHbRzuXHHXzzuuuuzuuzXHkHHMMbkkHkMkkkMMMNUMMN // WHKrrvrrvXqHMpfHHHWkrb...vkHyOrtttttdNXr.`.J>~-((J+ggQkHXHHHmaJz7&JWHMMWkuHXzuuuzzWgHHwHkKuzXMKXuzuuzuzzuzdkHHHHHkHWMHHbkWHMMMNXM# // Wg#rvrvrrXmHNpfHHHMMRd-.._4kfyttttllOHWr`` // <udT"""7"""""TMHHMNHHMNgv4HMRXHXHwuzzzuWHHKXHkHzzXMSWzuzzuzuuzudbkHHHHkkHqHuWkWHHMMMNWM // WHNrvrvvvXHmNppgg@MMMHr..` UkWOlllllldW$..?! ` ` // ?@MMHHMM#NMMmMkXXWkHuzuzuWNHSXHHHuuXNSWuzuuzuzuzuWkHNgMkkkMHSuWkqmqHHMNNK // WHMkvvrvrXHHMppHHHMNMTN_``` 4kWOz====vXP` ` ` // ``.HggmgM@MH###NKkkuXWHzzuXHHMzdMHHuzWNXKzuuzuzuzuuHkHHNMkkHHBuzWkHHHHuHMMM // WHHNzvvrvwHMMppHMMMM>.#L`````?kyy====?0S`` ` ` // ``...dmqqqmmHHHMMM#WRSzuzWHuzXHq#uWHHHzuWHXKzuzzuzuzuXHkHWMNkWM#uzuWHHHHSuuWM# // WM@MkwvvrzXMMHpgHMMM[.MN.`````(HXy1???zd.`` ` ` ` // dHkkqkkqkHHHHHHMMWWXzzuzwWwXHHKXMkHHuXMRXSuuuzuuzuzXHkHdHHWHHXuuwWHqHHuXzXWM // XHHMNyrvvwdW@HpHWMHML MM[` ` `.4kGz<<>Or``` ` // `dWpbbbbbHMMbbbHHMXXuzzuzuzXWHHSXMkHHuXMSXuzzuzzuzuzWkkHWMHMSwuzzXHkHHXuzuWd# // dHHH@NyzwwwWHMHHWMMMR dW]`` ` ```(HZx<<<4.```` `` `` // OZppfppppWfpWpK9NKXuuzuuzuXWHHudMqNHXWNuHuzzuzuzuzuHkHXMMBuuuzuuWkHHUuuuXSMS // wWHMMMMkwwvdNpHHHM#MH-jWP``` `` ```7kI<:<h.``````` `` // ,2OWVVyVVyWWWWIdMKWzuuuzzuXHHSwHHHHKXHHXSuuzuuzuzuXHHHXMXuuuuuuXHHHuzuuXSX#X // wdWHMMMMmwXwHbpMNHMM@b.hb``````````` // 7x1_(>_```````````(x7UUUV0XwvCI1dMWKXuzzuzuWHHudMkgkWbMSXuzzzuzzuzuWkHSW#zXwXuXXWHHuuXXuWXWSX // vvXWHMMHWNkvWHbbMWMMMN_JF.```` `` // `````?1_(_.`.`........(<777=<<<><<+dMXUuzuuuuWWMRwMHWMkWHHXSuuzuzuzzuXqHHXMHUXuXXHHHSuuwuXWud8uH // mzzXWH#zHbHkXNbbWMMMMD~(_``````````````` // .~_`.``.`.`.....___(<~(<<(<<dHkkuuuuuXkHHuWMkHkkkHSXXzuuzuuuuzXHHSd#uuXXWHHXuuuZuXSuqHudS // UHzzXWSXXWbbHHHbWHMH#<~...```` ``````````````.```.` // -_____<~~_<_<~~(jMWSuzuzuXWHMHXMHHHkkH#XSuzzuzuzuzuKkHXMQkWHHWUXuXXUuXUuXHuXBu // .(Smd8wSvXbbbbHHHWHW3___.``````` `` // ``````.```.```.`...._.._~~..~_~~(#WuzuuzXXkHMqMMHMkkkMUXuXzuuwuuzuXkHSWMWUUuuuXXUUuXHXXWSuXHXu // .. JKwSvwzWkkkkHHHH5~~..```````````````````.```.````````.` // .........dWSuuzzzdkHMW@MHMkkkHHXXuzuuXSuzuuWWHd#uuuXXkWSuXXWUXXHUXWHuuu // .`(HXSzzzzwWbkWHNHr_...``````````````````.```````.```````.`.`..`.-.(HKuzzuuwHHMNMHHMkkkHHuZuuzuuXuuuuXkHWMHHHUUuXXXWHXXHHUuXW8uuuu // .-MXWwzzzuzXkHHMHHN-.`````````` // ````````````.`.````.``.```.`.`....-dXUXuzuXHWHMMHHBWHMMMSZuzuuzXXzuuXHHMHMHkHHHHHHHWHHSuXkHWSuuuuX // (#XKzzzzzuzuWHHkWHHp // ``.````````````````````````.````````.....-((-(NSXuzzXHW@D:~`(/1- // .kXuzuuzXSuuzXXkHWMHHHHHHHHMWuuuQXUXWuuuXuXH // MXWzuzzzzzuXHHbHNMMMt`.```````````````````````````.`.` ..-J7"!`` // XKuzzuXHHM9;/<-.J-u!JXXuuzuXWuuuuXHHH#WMNHmkkkuXXkWUXXWXXuuuXqHH // XWzzzzuzzwXHHHH#"````<.````````````````````.``.`...-c"7``` ` ` // `(BzuuuXmHH8<!(- ?_!`jWUuzuuuWuuuzXWHNH> ..7WHHqHmQkWWXXuuuuuXWqHH // SwuzzzXuwXHNHY`` `` <,`.`````````````` `` ..J7=``` ` ` `` // ````.#zuzXXHHH$~`` ```(_(HSuuuzuXSuzuuXHHWCi(` ._ ?WggHHHHWkkkkWHHHHMH // zzzuzuzwWHMY!` ` ` `(&.```````````` ..J7^ `` ` ` ` ` `. .HXuuXWHW#!` ` // ```` (WUuzzuXXSzuuudHHXY$. : (..``.THHkqkHHHgHHMHkkk zzzzzzXHWK`` ` `` ` ` ` // TJ.``````..J7=```` ` ` ` ` `` ` `.8zuXXHHW=` `` // ..(XSuuuuuXWuuuuXHWH5~~` .`_?_,-``.TMMMMMMHkkqqHHH zzuuzdHHkN ` ` ` `` ` // ``(Wm,.(J7!``` ` ``` `` `` ` ` ``` .SzuXWHHY `` // .._~<~~(dSuuuzzXHuuuuXHWHD::?C._.( -`(!_1 ,WHqHHHmqHHHHN zuzXXHHkHM;` ` ` ` // `` ` .;jY= ` .``_`` ` ` ` ` `` ` `.dXuXWm@^ // .._~_.~~~~~(d0uuzuuXHUuuuXHWH5:::::::_.<&._4r?_.;WMMM@MMY"<!` zzXHHHHMHMb`` // `` ` `` `` .J! ` ..`_~ ` ` ` `` ` ` ``.JXXXHY! // .__.....~.~~~-d0wuzuXXHSuuuXWWH$::::;:::;:+- ~`(.i +HqHHkkHL..`. XWHHHMMHMHM; // ` ` ` ` ._`` ...(:.=_` ` ` ` ` ```` // .-dVT7^``````......~~~~~_jWuuuuuXHSuzuXHHH3<;:::::;;j<+z ``` -dHNkkMqkkN..`` // HHHMMHHHHNMN.`` ` ` `!`z(. ~..~ ! . ` `` ` ` ` // ..gHr``````````........~~~~_jWuuuuuXkSuuuXHWHC:;::;;:::+v>:((J<!(WHHMkkHNqkM;`.. // HMMkkHHHHM9?b `` ` ` `` .``. ` ` ` ` ``` 4HkkkH, // ``````.`......~~~~_+KuuuzuXHSuuuXHHK<(::::::<;<J+g9>::;< .4NkkqMHqH]..` // MHkHHHMM$<<:?L` `` ` ` ` ``.` ` !`` ` ` ` ` ` // ?HbkkHx``````.`..`...~~~~_jKuuuuuXHSuuuqMHD<:<;:<++ddNMB3:;::;:<` // `,HkkqH@HH].`` kkHHkHY``` (;?h`` ` ` `` ```` ` ` ` ` ` ` ` ` // ```.4XWbHx```..`......~~~~_gKuuuuXWH0uuuXHH3:;++1z<jgMB3<::::::::~` // `jMkqkHMHHF.`. kHHHH=` . ` _<?L ` ` ` ` ` ` ` ` ` ` ` ` ` ` ?kwWHp // .`.......~_~~(dKuuuuXWHUuuXWH9++z1<;+jWB3::::;;;::;:;_`` MNkqkqMNMF..` HHk@!. // ` ` ` ~?L ` ` `` ` `` `` ` ` ` ` ` ` ` ` // -WuXHh..`.....~~~~(dWuuuXXkHUuuXHH9>:<:++YY<:;::::;:::::;:::+.``?HHkHHHM>`.`
[]
878,890
878,891
u890465662
cpp
p03068
#include "bits/stdc++.h" using namespace std; #define int long long #define endl '\n' #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, a, b) for (int i = int(a); i < int(b); i++) #define pb emplace_back #define all(x) (x).begin(), (x).end() int mod = 1e9 + 7; int mod2 = 998244353; const int INF = 1e9; signed main() { int n, k; string s; cin >> n >> s >> k; rep(i, n) { if (s[k] == s[i]) cout << s[k]; else cout << "*"; } cout << endl; } // `.`..`(WNNNNNNMNWWWH9rttwgHM8OtttwwVtttrrtrttrw0rtrtwrrrtrZUAOOrrrXWppHMHyZHpWHMHMkWWVHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`.`..`(WMNMHfWH9ZtrtAdNM8ttttOwVtrrtrrtrrrrrdrrttrZkOrrrrrrXWyrtrrZWWWWMmwXWppWHHMmWHkWMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // .`.```_..(HMfWH9OtttwXWHBrttrOw0rttrOvrrrtrZrrRrtrrrtZHwrrrrrwwZHyrrrrZWWpWMmwWppkWHHMkHNkVWMNNNNN#NN#NN#NN#NN#NN#NN#NN#NN#NN#NNNN // .``.. // ..HNfWW9wtrrOdWHM0trttOdSrtrtwwrtrtrw0twSrtOrrrrZHwtrrrrrXwdWwrrrrXHppWNkXWpkvWH@MkHMHkWMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`. // -jMWWXXwtrttO0d@BrtrttwXVrtrrwVrrrtrtXrrd0rrXrrrrrZWyrrrrrrZXwWyZOrrvWWpWMkZHbkwrdHMMKMMNHkHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`. // v8Xdk9ttttrOwXM0tttrtwXwwrtrw0rrtrrtwKrrd0rrXrtrrrrZHkwrrrrrrXkVkrrrvrZHWpHHkWkwrwvVHHNWMMMMkWMNNNNNNN#NN#NN#NN#NN#NN#NN#NNNN // .. // JHZdbKOrrrtrtwWWOOttrOwSzVrOrw0rrttrrrdRrrdZrrdOrtrtrrZHkXwrrrrrZWXHwwrrrvWWWWNkWkvrrrwWM@RMMMNNmWMNNNNNNNNNNNNNNNNNNNNNNNNNNNN // . // .JGXHStttttrtwW9OrtrrrdSX0rtrdStrtrtrrwHVrrdkrrtSrrrrrrrdMyXrrrrrvXWXWmwvrrvdHWWNkWyvvvvvT@MNWM#N#MNWMMNNNNNNNNNNNNNNNNNNNNNNNNN // (.zqHXZtrttrrOwU0trttrOdWX0OtOdRrrtrrrrrdNrrrdkrrrXOwrrrrrrdNySrrrrrwXXkUmvvwvrZHWfNkUkvwvvvdMMMRM#MMNNNkMMNNNNNN#NN#NN#NN#NN#NNNN // (wdS0OttrtOOrwSrtttrrtwKukrrrwKrrrrrtrrwW@rrrXKrrrZkr0OrrrrrWNwkrvvrrvzXkXHwvvrvwWVVHkUyrvvvvZHMMNWMMNNNNNkWMNNNNNNNNNNNNNNNNNNNNN // wWtrrttrrOwrwStrttrtrwWZXOrtwX0rrrttrrrXMSrrrXWrrrrXrwvrrrrvZHHXkrrrrvrzWkXNyvrvvvWWWHHWwvvvvvwHNMHRM#NNNNNMmWMMNNNNNNNNNNNNNNNNNN // 8OtttrwZwwtwSrrttrrrwdyXwtrrdWrrtrrrrrdWH0rrrXWOrrrwRz0rrvrrrdMHWwvvrrvvXWkWHyrvvvrWWWHkHvvvvvvwWMMMNWMMNNNNNMHWMMNMNNNN#NN#NNNNNN // wttrrdVrZrwWwtOrrrrwdWX0rrtdH0rrrtrrtwWHHrrrrXWRrrvrXXXrrvrrrvXHkSwvvrvrrXWkVHyvvvvwHVWHWRvvvvvvdHdMMMKMNNNNNNNMNkWMNNNNNNNNNNNNNM // ttrrd0rwrOX0rrtrrtwXHXSrwrwHKrtrtrrtrdWH#rrrrdpkrrrrvHwkwvrrvrZWHXkzzvvvvwUWkpNwvrvvZHfVNHwvvvvvzXHWMNMNMNNNNNNNN#NkWMNNNNNNNNNM3> // rrrdSrwwtXSrrtrrrwXWWKwrrrdHXrrrrrrrwWWH#vrrrvWpvrrvrdRXwvrvrvvXHWWwkvvrvvwWWKWHzwvvvXHVWWHvzzzzvzWRHMMMNHMNNNNNNNNMNkMMNNNNNN@<<> // OOd9rw0rdKOtrtrrruXHW0rrrdH#rrrrrrrrdpWp#rrrrrXWkvrvvrWwkrvrrvwwWHpKdvvrrvvXHHfWmdwvzwWHVHWkzzzzzzwWXHMHHNWMNNNNNNNNNMNkMNNNN#z>>> // OdSOwSwwW0rrrrtrwXNW8rrtrWWSrtrrrrrrXpHWHvrrrrXpHrrrvwZHdyvvvvvvXHpHwkvvvvvrXHHfNwXvzzwWWWKHzzzzzzzWSWHHHMMKMNNNNNNNNNNMNKMNN#>>;> // wWwOXrwX8rtrrrrwWWpHrrrrdNNrrrrrrrrwppNWHrvrvrypWwvvrrvXKWvrvrvvZXHHkXzvvvvvwWWWWNdkvvzXHfHWkXzzzzzwWXHHHHNMHMNNNNNNNNNNNNNWMN+>>> // R0rd0rdKrrtrtrrdWHWSrrrwWWDrrrrrrrrXpWHqWvrrrvdWbRvvrvvwWZkvvvrvvXHbHzRvvvvvvdHHpHkWwvzXWHWHHzuzzzzzXXWHHHMHMNHMNNNNNNNNNNNMNWh<>> // wOwSrwXSrtrtrrwHWWMwrrrdNWSrrrrrrrvppWpHprrvrvddWHwvvrrvXHXwvvvrvzXWHkXzvvvvvzWWKWNdRvzzXWWHHXzzzzzzzudWHbH@HNNWMNNNNNNNNNNNNNkHe> // rOXwwwKrrrrrrrXWHHDrrwrdHHXwrrrrrrwpWWbHWvvvrvwHHpHrvvvrXWHWwvvrwwXHkHdkvzvvvvZHHpHKWzzzwWHWHRzzzzuzzzzWHHkHHMMNWMNNNNNNNNNNNNNNKm // rdX0OXSrrtrrrdHHWMXrrrwHWHrrrrrrrrXppqWHWkrrvvwWMHHXwwvvvZWKRvvvvrWHWHwWvzvzzzzXWKWNXRzzwXWWNHzzzzzzzzzXUHkHWMMHNWMNNNNNNNNNNNNNNN // wSwww#rrrrrrwWWHM#vrrrd#WKvrrrrrvvXppmWMWkvvvvwXNNpNvSXzzvdHkkvvzvdWWWRXwzzzzzzdNNpMkHzzzWVHHpXzzzzzzzzdkHkHHHNMHNkMNNNNNNNNNNNNNN // XwSwWwrrrrrrdHWWMKrvrvWHWSrvrvvvvwpppHW#HRwUUUWWMMMMMHHHHmmXHWwvvzwWHbNwRzzzzzzzWWWWHWkzzdXWWWRzzzzzzzuzWWbHHWMNMMNkMNNNNNNNNNNNNN // 8drd#rrrrrrwWWkHMmXmywMfWXrvrrrvrwppWNWMNWvrvvwvW#MNHmdkrvvXHMMmmwzdWpM0WzzzzzzzdHHWNUHzzzWWmHHzzuzzuzuzWXbbNkHMqMHNkHNNNNNNNNNNNN // dSwWSrrrrrrdHHHMHrrrwWMfWvvvrvrrrdppWNW#WWRvvrvvdM?WNHkXkzvvdWMHXHNmHHHkfwzzzzzzXHHpMWHkzuXWHNWXzzuzzuzzXXkkHbHMHMMMMkMNNNNNNNNNNN // Xrd#wrrrrrrXpHWH#rrrvdMWWvrrvrvvrdppWHW#(NWwvvvvwMr~TNHmdkvzvXWMKzzzWMHKXXzzzzzzuWHbHkWKuzdWWHWkzzzuzzuuXXHkHkgHk@H@HHkMNNNNNNNNNN // RvWDrrrrrrwHWkMW#rvvrMMfWwrvrrvvrdppWHW@~?HHuvvrvdb_~?NWkdkzzzUWMkzuuWWHWXuzwzzuzXHHHKWHuzzWW@WRuzuzzzzzduWbHHgMH@HHHMMHMNNNNNNNNN // rdHwrrrrrrXHHWNW#vvvdMMHWkvrvrrvrdppWbWD~~?XKkrrrwMc~~~THHZHwzzWHNkvzwMRdHHzuzzzzXHHWHXNkuzdWHkWuzzuzuzzXzWkHHHMHHHkH@MMNWMNNNNNNN // rdHvrrrrrrWkHHHW#rrrd#dNWKrvrvvrvwbpWWW$...vVkkOrtXb~~~~(WHkWkvwWWMkzzWRXkSWXzzzuwmNWHXHRuuwHMKWzzuzzzuzXzWHWHHMHHHkkMMMHHWNNNNNNN // wW#rrvrrrwHWHMpWNrvrd@(NWWvrrrrrvvWpWXH$..._?dkkttOWl~~~~~?HHdHXXbWMkzUHXWkzzzzzzuHNk#XHHzzukHHXzuzzzuzuXuXqkMHMHMbbkHHH@HNWMNNNNN // dH#rrrvrrdNWWNpHHwrrd@_WHWkrvvrrrrZpWXWr...__?WkWyOvN~~~~~__7HkWkbbkNkzXHZkzzzuzzzWHW#ugbXuzWWHXXuzzuzuuuzXkkHHH@MbkHMHMHMMNWMNNNN // X@KrrvrvrXNHWHpHHHrrdb~(NWHrrrrrrrrXWXWr..`...-7HZkzvn~~~~~~~_TNyHHkHMyzXkXuzzzzuuWHW#uHkkzzWHHXuzzzzuzzuuXHkHHHMNbkHHHHHHMMNWMNNN // WHKvvrvrvXHNMbpHmHkOwb..?HWRrwOrtrtrWKWr`.`.`..._?6dkJn~~~~~~-_~7NHMHbNkuUkzzuzzzuWHW#uHbRzuXHHXzzuuuuzuuzXHkHHMMbkkHkMkkkMMMNUMMN // WHKrrvrrvXqHMpfHHHWkrb...vkHyOrtttttdNXr.`.J>~-((J+ggQkHXHHHmaJz7&JWHMMWkuHXzuuuzzWgHHwHkKuzXMKXuzuuzuzzuzdkHHHHHkHWMHHbkWHMMMNXM# // Wg#rvrvrrXmHNpfHHHMMRd-.._4kfyttttllOHWr`` // <udT"""7"""""TMHHMNHHMNgv4HMRXHXHwuzzzuWHHKXHkHzzXMSWzuzzuzuuzudbkHHHHkkHqHuWkWHHMMMNWM // WHNrvrvvvXHmNppgg@MMMHr..` UkWOlllllldW$..?! ` ` // ?@MMHHMM#NMMmMkXXWkHuzuzuWNHSXHHHuuXNSWuzuuzuzuzuWkHNgMkkkMHSuWkqmqHHMNNK // WHMkvvrvrXHHMppHHHMNMTN_``` 4kWOz====vXP` ` ` // ``.HggmgM@MH###NKkkuXWHzzuXHHMzdMHHuzWNXKzuuzuzuzuuHkHHNMkkHHBuzWkHHHHuHMMM // WHHNzvvrvwHMMppHMMMM>.#L`````?kyy====?0S`` ` ` // ``...dmqqqmmHHHMMM#WRSzuzWHuzXHq#uWHHHzuWHXKzuzzuzuzuXHkHWMNkWM#uzuWHHHHSuuWM# // WM@MkwvvrzXMMHpgHMMM[.MN.`````(HXy1???zd.`` ` ` ` // dHkkqkkqkHHHHHHMMWWXzzuzwWwXHHKXMkHHuXMRXSuuuzuuzuzXHkHdHHWHHXuuwWHqHHuXzXWM // XHHMNyrvvwdW@HpHWMHML MM[` ` `.4kGz<<>Or``` ` // `dWpbbbbbHMMbbbHHMXXuzzuzuzXWHHSXMkHHuXMSXuzzuzzuzuzWkkHWMHMSwuzzXHkHHXuzuWd# // dHHH@NyzwwwWHMHHWMMMR dW]`` ` ```(HZx<<<4.```` `` `` // OZppfppppWfpWpK9NKXuuzuuzuXWHHudMqNHXWNuHuzzuzuzuzuHkHXMMBuuuzuuWkHHUuuuXSMS // wWHMMMMkwwvdNpHHHM#MH-jWP``` `` ```7kI<:<h.``````` `` // ,2OWVVyVVyWWWWIdMKWzuuuzzuXHHSwHHHHKXHHXSuuzuuzuzuXHHHXMXuuuuuuXHHHuzuuXSX#X // wdWHMMMMmwXwHbpMNHMM@b.hb``````````` // 7x1_(>_```````````(x7UUUV0XwvCI1dMWKXuzzuzuWHHudMkgkWbMSXuzzzuzzuzuWkHSW#zXwXuXXWHHuuXXuWXWSX // vvXWHMMHWNkvWHbbMWMMMN_JF.```` `` // `````?1_(_.`.`........(<777=<<<><<+dMXUuzuuuuWWMRwMHWMkWHHXSuuzuzuzzuXqHHXMHUXuXXHHHSuuwuXWud8uH // mzzXWH#zHbHkXNbbWMMMMD~(_``````````````` // .~_`.``.`.`.....___(<~(<<(<<dHkkuuuuuXkHHuWMkHkkkHSXXzuuzuuuuzXHHSd#uuXXWHHXuuuZuXSuqHudS // UHzzXWSXXWbbHHHbWHMH#<~...```` ``````````````.```.` // -_____<~~_<_<~~(jMWSuzuzuXWHMHXMHHHkkH#XSuzzuzuzuzuKkHXMQkWHHWUXuXXUuXUuXHuXBu // .(Smd8wSvXbbbbHHHWHW3___.``````` `` // ``````.```.```.`...._.._~~..~_~~(#WuzuuzXXkHMqMMHMkkkMUXuXzuuwuuzuXkHSWMWUUuuuXXUUuXHXXWSuXHXu // .. JKwSvwzWkkkkHHHH5~~..```````````````````.```.````````.` // .........dWSuuzzzdkHMW@MHMkkkHHXXuzuuXSuzuuWWHd#uuuXXkWSuXXWUXXHUXWHuuu // .`(HXSzzzzwWbkWHNHr_...``````````````````.```````.```````.`.`..`.-.(HKuzzuuwHHMNMHHMkkkHHuZuuzuuXuuuuXkHWMHHHUUuXXXWHXXHHUuXW8uuuu // .-MXWwzzzuzXkHHMHHN-.`````````` // ````````````.`.````.``.```.`.`....-dXUXuzuXHWHMMHHBWHMMMSZuzuuzXXzuuXHHMHMHkHHHHHHHWHHSuXkHWSuuuuX // (#XKzzzzzuzuWHHkWHHp // ``.````````````````````````.````````.....-((-(NSXuzzXHW@D:~`(/1- // .kXuzuuzXSuuzXXkHWMHHHHHHHHMWuuuQXUXWuuuXuXH // MXWzuzzzzzuXHHbHNMMMt`.```````````````````````````.`.` ..-J7"!`` // XKuzzuXHHM9;/<-.J-u!JXXuuzuXWuuuuXHHH#WMNHmkkkuXXkWUXXWXXuuuXqHH // XWzzzzuzzwXHHHH#"````<.````````````````````.``.`...-c"7``` ` ` // `(BzuuuXmHH8<!(- ?_!`jWUuzuuuWuuuzXWHNH> ..7WHHqHmQkWWXXuuuuuXWqHH // SwuzzzXuwXHNHY`` `` <,`.`````````````` `` ..J7=``` ` ` `` // ````.#zuzXXHHH$~`` ```(_(HSuuuzuXSuzuuXHHWCi(` ._ ?WggHHHHWkkkkWHHHHMH // zzzuzuzwWHMY!` ` ` `(&.```````````` ..J7^ `` ` ` ` ` `. .HXuuXWHW#!` ` // ```` (WUuzzuXXSzuuudHHXY$. : (..``.THHkqkHHHgHHMHkkk zzzzzzXHWK`` ` `` ` ` ` // TJ.``````..J7=```` ` ` ` ` `` ` `.8zuXXHHW=` `` // ..(XSuuuuuXWuuuuXHWH5~~` .`_?_,-``.TMMMMMMHkkqqHHH zzuuzdHHkN ` ` ` `` ` // ``(Wm,.(J7!``` ` ``` `` `` ` ` ``` .SzuXWHHY `` // .._~<~~(dSuuuzzXHuuuuXHWHD::?C._.( -`(!_1 ,WHqHHHmqHHHHN zuzXXHHkHM;` ` ` ` // `` ` .;jY= ` .``_`` ` ` ` ` `` ` `.dXuXWm@^ // .._~_.~~~~~(d0uuzuuXHUuuuXHWH5:::::::_.<&._4r?_.;WMMM@MMY"<!` zzXHHHHMHMb`` // `` ` `` `` .J! ` ..`_~ ` ` ` `` ` ` ``.JXXXHY! // .__.....~.~~~-d0wuzuXXHSuuuXWWH$::::;:::;:+- ~`(.i +HqHHkkHL..`. XWHHHMMHMHM; // ` ` ` ` ._`` ...(:.=_` ` ` ` ` ```` // .-dVT7^``````......~~~~~_jWuuuuuXHSuzuXHHH3<;:::::;;j<+z ``` -dHNkkMqkkN..`` // HHHMMHHHHNMN.`` ` ` `!`z(. ~..~ ! . ` `` ` ` ` // ..gHr``````````........~~~~_jWuuuuuXkSuuuXHWHC:;::;;:::+v>:((J<!(WHHMkkHNqkM;`.. // HMMkkHHHHM9?b `` ` ` `` .``. ` ` ` ` ``` 4HkkkH, // ``````.`......~~~~_+KuuuzuXHSuuuXHHK<(::::::<;<J+g9>::;< .4NkkqMHqH]..` // MHkHHHMM$<<:?L` `` ` ` ` ``.` ` !`` ` ` ` ` ` // ?HbkkHx``````.`..`...~~~~_jKuuuuuXHSuuuqMHD<:<;:<++ddNMB3:;::;:<` // `,HkkqH@HH].`` kkHHkHY``` (;?h`` ` ` `` ```` ` ` ` ` ` ` ` ` // ```.4XWbHx```..`......~~~~_gKuuuuXWH0uuuXHH3:;++1z<jgMB3<::::::::~` // `jMkqkHMHHF.`. kHHHH=` . ` _<?L ` ` ` ` ` ` ` ` ` ` ` ` ` ` ?kwWHp // .`.......~_~~(dKuuuuXWHUuuXWH9++z1<;+jWB3::::;;;::;:;_`` MNkqkqMNMF..` HHk@!. // ` ` ` ~?L ` ` `` ` `` `` ` ` ` ` ` ` ` ` // -WuXHh..`.....~~~~(dWuuuXXkHUuuXHH9>:<:++YY<:;::::;:::::;:::+.``?HHkHHHM>`.`
#include "bits/stdc++.h" using namespace std; #define int long long #define endl '\n' #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, a, b) for (int i = int(a); i < int(b); i++) #define pb emplace_back #define all(x) (x).begin(), (x).end() int mod = 1e9 + 7; int mod2 = 998244353; const int INF = 1e9; signed main() { int n, k; string s; cin >> n >> s >> k; k--; rep(i, n) { if (s[k] == s[i]) cout << s[k]; else cout << "*"; } cout << endl; } // `.`..`(WNNNNNNMNWWWH9rttwgHM8OtttwwVtttrrtrttrw0rtrtwrrrtrZUAOOrrrXWppHMHyZHpWHMHMkWWVHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`.`..`(WMNMHfWH9ZtrtAdNM8ttttOwVtrrtrrtrrrrrdrrttrZkOrrrrrrXWyrtrrZWWWWMmwXWppWHHMmWHkWMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // .`.```_..(HMfWH9OtttwXWHBrttrOw0rttrOvrrrtrZrrRrtrrrtZHwrrrrrwwZHyrrrrZWWpWMmwWppkWHHMkHNkVWMNNNNN#NN#NN#NN#NN#NN#NN#NN#NN#NN#NNNN // .``.. // ..HNfWW9wtrrOdWHM0trttOdSrtrtwwrtrtrw0twSrtOrrrrZHwtrrrrrXwdWwrrrrXHppWNkXWpkvWH@MkHMHkWMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`. // -jMWWXXwtrttO0d@BrtrttwXVrtrrwVrrrtrtXrrd0rrXrrrrrZWyrrrrrrZXwWyZOrrvWWpWMkZHbkwrdHMMKMMNHkHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN // `.`. // v8Xdk9ttttrOwXM0tttrtwXwwrtrw0rrtrrtwKrrd0rrXrtrrrrZHkwrrrrrrXkVkrrrvrZHWpHHkWkwrwvVHHNWMMMMkWMNNNNNNN#NN#NN#NN#NN#NN#NN#NNNN // .. // JHZdbKOrrrtrtwWWOOttrOwSzVrOrw0rrttrrrdRrrdZrrdOrtrtrrZHkXwrrrrrZWXHwwrrrvWWWWNkWkvrrrwWM@RMMMNNmWMNNNNNNNNNNNNNNNNNNNNNNNNNNNN // . // .JGXHStttttrtwW9OrtrrrdSX0rtrdStrtrtrrwHVrrdkrrtSrrrrrrrdMyXrrrrrvXWXWmwvrrvdHWWNkWyvvvvvT@MNWM#N#MNWMMNNNNNNNNNNNNNNNNNNNNNNNNN // (.zqHXZtrttrrOwU0trttrOdWX0OtOdRrrtrrrrrdNrrrdkrrrXOwrrrrrrdNySrrrrrwXXkUmvvwvrZHWfNkUkvwvvvdMMMRM#MMNNNkMMNNNNNN#NN#NN#NN#NN#NNNN // (wdS0OttrtOOrwSrtttrrtwKukrrrwKrrrrrtrrwW@rrrXKrrrZkr0OrrrrrWNwkrvvrrvzXkXHwvvrvwWVVHkUyrvvvvZHMMNWMMNNNNNkWMNNNNNNNNNNNNNNNNNNNNN // wWtrrttrrOwrwStrttrtrwWZXOrtwX0rrrttrrrXMSrrrXWrrrrXrwvrrrrvZHHXkrrrrvrzWkXNyvrvvvWWWHHWwvvvvvwHNMHRM#NNNNNMmWMMNNNNNNNNNNNNNNNNNN // 8OtttrwZwwtwSrrttrrrwdyXwtrrdWrrtrrrrrdWH0rrrXWOrrrwRz0rrvrrrdMHWwvvrrvvXWkWHyrvvvrWWWHkHvvvvvvwWMMMNWMMNNNNNMHWMMNMNNNN#NN#NNNNNN // wttrrdVrZrwWwtOrrrrwdWX0rrtdH0rrrtrrtwWHHrrrrXWRrrvrXXXrrvrrrvXHkSwvvrvrrXWkVHyvvvvwHVWHWRvvvvvvdHdMMMKMNNNNNNNMNkWMNNNNNNNNNNNNNM // ttrrd0rwrOX0rrtrrtwXHXSrwrwHKrtrtrrtrdWH#rrrrdpkrrrrvHwkwvrrvrZWHXkzzvvvvwUWkpNwvrvvZHfVNHwvvvvvzXHWMNMNMNNNNNNNN#NkWMNNNNNNNNNM3> // rrrdSrwwtXSrrtrrrwXWWKwrrrdHXrrrrrrrwWWH#vrrrvWpvrrvrdRXwvrvrvvXHWWwkvvrvvwWWKWHzwvvvXHVWWHvzzzzvzWRHMMMNHMNNNNNNNNMNkMMNNNNNN@<<> // OOd9rw0rdKOtrtrrruXHW0rrrdH#rrrrrrrrdpWp#rrrrrXWkvrvvrWwkrvrrvwwWHpKdvvrrvvXHHfWmdwvzwWHVHWkzzzzzzwWXHMHHNWMNNNNNNNNNMNkMNNNN#z>>> // OdSOwSwwW0rrrrtrwXNW8rrtrWWSrtrrrrrrXpHWHvrrrrXpHrrrvwZHdyvvvvvvXHpHwkvvvvvrXHHfNwXvzzwWWWKHzzzzzzzWSWHHHMMKMNNNNNNNNNNMNKMNN#>>;> // wWwOXrwX8rtrrrrwWWpHrrrrdNNrrrrrrrrwppNWHrvrvrypWwvvrrvXKWvrvrvvZXHHkXzvvvvvwWWWWNdkvvzXHfHWkXzzzzzwWXHHHHNMHMNNNNNNNNNNNNNWMN+>>> // R0rd0rdKrrtrtrrdWHWSrrrwWWDrrrrrrrrXpWHqWvrrrvdWbRvvrvvwWZkvvvrvvXHbHzRvvvvvvdHHpHkWwvzXWHWHHzuzzzzzXXWHHHMHMNHMNNNNNNNNNNNMNWh<>> // wOwSrwXSrtrtrrwHWWMwrrrdNWSrrrrrrrvppWpHprrvrvddWHwvvrrvXHXwvvvrvzXWHkXzvvvvvzWWKWNdRvzzXWWHHXzzzzzzzudWHbH@HNNWMNNNNNNNNNNNNNkHe> // rOXwwwKrrrrrrrXWHHDrrwrdHHXwrrrrrrwpWWbHWvvvrvwHHpHrvvvrXWHWwvvrwwXHkHdkvzvvvvZHHpHKWzzzwWHWHRzzzzuzzzzWHHkHHMMNWMNNNNNNNNNNNNNNKm // rdX0OXSrrtrrrdHHWMXrrrwHWHrrrrrrrrXppqWHWkrrvvwWMHHXwwvvvZWKRvvvvrWHWHwWvzvzzzzXWKWNXRzzwXWWNHzzzzzzzzzXUHkHWMMHNWMNNNNNNNNNNNNNNN // wSwww#rrrrrrwWWHM#vrrrd#WKvrrrrrvvXppmWMWkvvvvwXNNpNvSXzzvdHkkvvzvdWWWRXwzzzzzzdNNpMkHzzzWVHHpXzzzzzzzzdkHkHHHNMHNkMNNNNNNNNNNNNNN // XwSwWwrrrrrrdHWWMKrvrvWHWSrvrvvvvwpppHW#HRwUUUWWMMMMMHHHHmmXHWwvvzwWHbNwRzzzzzzzWWWWHWkzzdXWWWRzzzzzzzuzWWbHHWMNMMNkMNNNNNNNNNNNNN // 8drd#rrrrrrwWWkHMmXmywMfWXrvrrrvrwppWNWMNWvrvvwvW#MNHmdkrvvXHMMmmwzdWpM0WzzzzzzzdHHWNUHzzzWWmHHzzuzzuzuzWXbbNkHMqMHNkHNNNNNNNNNNNN // dSwWSrrrrrrdHHHMHrrrwWMfWvvvrvrrrdppWNW#WWRvvrvvdM?WNHkXkzvvdWMHXHNmHHHkfwzzzzzzXHHpMWHkzuXWHNWXzzuzzuzzXXkkHbHMHMMMMkMNNNNNNNNNNN // Xrd#wrrrrrrXpHWH#rrrvdMWWvrrvrvvrdppWHW#(NWwvvvvwMr~TNHmdkvzvXWMKzzzWMHKXXzzzzzzuWHbHkWKuzdWWHWkzzzuzzuuXXHkHkgHk@H@HHkMNNNNNNNNNN // RvWDrrrrrrwHWkMW#rvvrMMfWwrvrrvvrdppWHW@~?HHuvvrvdb_~?NWkdkzzzUWMkzuuWWHWXuzwzzuzXHHHKWHuzzWW@WRuzuzzzzzduWbHHgMH@HHHMMHMNNNNNNNNN // rdHwrrrrrrXHHWNW#vvvdMMHWkvrvrrvrdppWbWD~~?XKkrrrwMc~~~THHZHwzzWHNkvzwMRdHHzuzzzzXHHWHXNkuzdWHkWuzzuzuzzXzWkHHHMHHHkH@MMNWMNNNNNNN // rdHvrrrrrrWkHHHW#rrrd#dNWKrvrvvrvwbpWWW$...vVkkOrtXb~~~~(WHkWkvwWWMkzzWRXkSWXzzzuwmNWHXHRuuwHMKWzzuzzzuzXzWHWHHMHHHkkMMMHHWNNNNNNN // wW#rrvrrrwHWHMpWNrvrd@(NWWvrrrrrvvWpWXH$..._?dkkttOWl~~~~~?HHdHXXbWMkzUHXWkzzzzzzuHNk#XHHzzukHHXzuzzzuzuXuXqkMHMHMbbkHHH@HNWMNNNNN // dH#rrrvrrdNWWNpHHwrrd@_WHWkrvvrrrrZpWXWr...__?WkWyOvN~~~~~__7HkWkbbkNkzXHZkzzzuzzzWHW#ugbXuzWWHXXuzzuzuuuzXkkHHH@MbkHMHMHMMNWMNNNN // X@KrrvrvrXNHWHpHHHrrdb~(NWHrrrrrrrrXWXWr..`...-7HZkzvn~~~~~~~_TNyHHkHMyzXkXuzzzzuuWHW#uHkkzzWHHXuzzzzuzzuuXHkHHHMNbkHHHHHHMMNWMNNN // WHKvvrvrvXHNMbpHmHkOwb..?HWRrwOrtrtrWKWr`.`.`..._?6dkJn~~~~~~-_~7NHMHbNkuUkzzuzzzuWHW#uHbRzuXHHXzzuuuuzuuzXHkHHMMbkkHkMkkkMMMNUMMN // WHKrrvrrvXqHMpfHHHWkrb...vkHyOrtttttdNXr.`.J>~-((J+ggQkHXHHHmaJz7&JWHMMWkuHXzuuuzzWgHHwHkKuzXMKXuzuuzuzzuzdkHHHHHkHWMHHbkWHMMMNXM# // Wg#rvrvrrXmHNpfHHHMMRd-.._4kfyttttllOHWr`` // <udT"""7"""""TMHHMNHHMNgv4HMRXHXHwuzzzuWHHKXHkHzzXMSWzuzzuzuuzudbkHHHHkkHqHuWkWHHMMMNWM // WHNrvrvvvXHmNppgg@MMMHr..` UkWOlllllldW$..?! ` ` // ?@MMHHMM#NMMmMkXXWkHuzuzuWNHSXHHHuuXNSWuzuuzuzuzuWkHNgMkkkMHSuWkqmqHHMNNK // WHMkvvrvrXHHMppHHHMNMTN_``` 4kWOz====vXP` ` ` // ``.HggmgM@MH###NKkkuXWHzzuXHHMzdMHHuzWNXKzuuzuzuzuuHkHHNMkkHHBuzWkHHHHuHMMM // WHHNzvvrvwHMMppHMMMM>.#L`````?kyy====?0S`` ` ` // ``...dmqqqmmHHHMMM#WRSzuzWHuzXHq#uWHHHzuWHXKzuzzuzuzuXHkHWMNkWM#uzuWHHHHSuuWM# // WM@MkwvvrzXMMHpgHMMM[.MN.`````(HXy1???zd.`` ` ` ` // dHkkqkkqkHHHHHHMMWWXzzuzwWwXHHKXMkHHuXMRXSuuuzuuzuzXHkHdHHWHHXuuwWHqHHuXzXWM // XHHMNyrvvwdW@HpHWMHML MM[` ` `.4kGz<<>Or``` ` // `dWpbbbbbHMMbbbHHMXXuzzuzuzXWHHSXMkHHuXMSXuzzuzzuzuzWkkHWMHMSwuzzXHkHHXuzuWd# // dHHH@NyzwwwWHMHHWMMMR dW]`` ` ```(HZx<<<4.```` `` `` // OZppfppppWfpWpK9NKXuuzuuzuXWHHudMqNHXWNuHuzzuzuzuzuHkHXMMBuuuzuuWkHHUuuuXSMS // wWHMMMMkwwvdNpHHHM#MH-jWP``` `` ```7kI<:<h.``````` `` // ,2OWVVyVVyWWWWIdMKWzuuuzzuXHHSwHHHHKXHHXSuuzuuzuzuXHHHXMXuuuuuuXHHHuzuuXSX#X // wdWHMMMMmwXwHbpMNHMM@b.hb``````````` // 7x1_(>_```````````(x7UUUV0XwvCI1dMWKXuzzuzuWHHudMkgkWbMSXuzzzuzzuzuWkHSW#zXwXuXXWHHuuXXuWXWSX // vvXWHMMHWNkvWHbbMWMMMN_JF.```` `` // `````?1_(_.`.`........(<777=<<<><<+dMXUuzuuuuWWMRwMHWMkWHHXSuuzuzuzzuXqHHXMHUXuXXHHHSuuwuXWud8uH // mzzXWH#zHbHkXNbbWMMMMD~(_``````````````` // .~_`.``.`.`.....___(<~(<<(<<dHkkuuuuuXkHHuWMkHkkkHSXXzuuzuuuuzXHHSd#uuXXWHHXuuuZuXSuqHudS // UHzzXWSXXWbbHHHbWHMH#<~...```` ``````````````.```.` // -_____<~~_<_<~~(jMWSuzuzuXWHMHXMHHHkkH#XSuzzuzuzuzuKkHXMQkWHHWUXuXXUuXUuXHuXBu // .(Smd8wSvXbbbbHHHWHW3___.``````` `` // ``````.```.```.`...._.._~~..~_~~(#WuzuuzXXkHMqMMHMkkkMUXuXzuuwuuzuXkHSWMWUUuuuXXUUuXHXXWSuXHXu // .. JKwSvwzWkkkkHHHH5~~..```````````````````.```.````````.` // .........dWSuuzzzdkHMW@MHMkkkHHXXuzuuXSuzuuWWHd#uuuXXkWSuXXWUXXHUXWHuuu // .`(HXSzzzzwWbkWHNHr_...``````````````````.```````.```````.`.`..`.-.(HKuzzuuwHHMNMHHMkkkHHuZuuzuuXuuuuXkHWMHHHUUuXXXWHXXHHUuXW8uuuu // .-MXWwzzzuzXkHHMHHN-.`````````` // ````````````.`.````.``.```.`.`....-dXUXuzuXHWHMMHHBWHMMMSZuzuuzXXzuuXHHMHMHkHHHHHHHWHHSuXkHWSuuuuX // (#XKzzzzzuzuWHHkWHHp // ``.````````````````````````.````````.....-((-(NSXuzzXHW@D:~`(/1- // .kXuzuuzXSuuzXXkHWMHHHHHHHHMWuuuQXUXWuuuXuXH // MXWzuzzzzzuXHHbHNMMMt`.```````````````````````````.`.` ..-J7"!`` // XKuzzuXHHM9;/<-.J-u!JXXuuzuXWuuuuXHHH#WMNHmkkkuXXkWUXXWXXuuuXqHH // XWzzzzuzzwXHHHH#"````<.````````````````````.``.`...-c"7``` ` ` // `(BzuuuXmHH8<!(- ?_!`jWUuzuuuWuuuzXWHNH> ..7WHHqHmQkWWXXuuuuuXWqHH // SwuzzzXuwXHNHY`` `` <,`.`````````````` `` ..J7=``` ` ` `` // ````.#zuzXXHHH$~`` ```(_(HSuuuzuXSuzuuXHHWCi(` ._ ?WggHHHHWkkkkWHHHHMH // zzzuzuzwWHMY!` ` ` `(&.```````````` ..J7^ `` ` ` ` ` `. .HXuuXWHW#!` ` // ```` (WUuzzuXXSzuuudHHXY$. : (..``.THHkqkHHHgHHMHkkk zzzzzzXHWK`` ` `` ` ` ` // TJ.``````..J7=```` ` ` ` ` `` ` `.8zuXXHHW=` `` // ..(XSuuuuuXWuuuuXHWH5~~` .`_?_,-``.TMMMMMMHkkqqHHH zzuuzdHHkN ` ` ` `` ` // ``(Wm,.(J7!``` ` ``` `` `` ` ` ``` .SzuXWHHY `` // .._~<~~(dSuuuzzXHuuuuXHWHD::?C._.( -`(!_1 ,WHqHHHmqHHHHN zuzXXHHkHM;` ` ` ` // `` ` .;jY= ` .``_`` ` ` ` ` `` ` `.dXuXWm@^ // .._~_.~~~~~(d0uuzuuXHUuuuXHWH5:::::::_.<&._4r?_.;WMMM@MMY"<!` zzXHHHHMHMb`` // `` ` `` `` .J! ` ..`_~ ` ` ` `` ` ` ``.JXXXHY! // .__.....~.~~~-d0wuzuXXHSuuuXWWH$::::;:::;:+- ~`(.i +HqHHkkHL..`. XWHHHMMHMHM; // ` ` ` ` ._`` ...(:.=_` ` ` ` ` ```` // .-dVT7^``````......~~~~~_jWuuuuuXHSuzuXHHH3<;:::::;;j<+z ``` -dHNkkMqkkN..`` // HHHMMHHHHNMN.`` ` ` `!`z(. ~..~ ! . ` `` ` ` ` // ..gHr``````````........~~~~_jWuuuuuXkSuuuXHWHC:;::;;:::+v>:((J<!(WHHMkkHNqkM;`.. // HMMkkHHHHM9?b `` ` ` `` .``. ` ` ` ` ``` 4HkkkH, // ``````.`......~~~~_+KuuuzuXHSuuuXHHK<(::::::<;<J+g9>::;< .4NkkqMHqH]..` // MHkHHHMM$<<:?L` `` ` ` ` ``.` ` !`` ` ` ` ` ` // ?HbkkHx``````.`..`...~~~~_jKuuuuuXHSuuuqMHD<:<;:<++ddNMB3:;::;:<` // `,HkkqH@HH].`` kkHHkHY``` (;?h`` ` ` `` ```` ` ` ` ` ` ` ` ` // ```.4XWbHx```..`......~~~~_gKuuuuXWH0uuuXHH3:;++1z<jgMB3<::::::::~` // `jMkqkHMHHF.`. kHHHH=` . ` _<?L ` ` ` ` ` ` ` ` ` ` ` ` ` ` ?kwWHp // .`.......~_~~(dKuuuuXWHUuuXWH9++z1<;+jWB3::::;;;::;:;_`` MNkqkqMNMF..` HHk@!. // ` ` ` ~?L ` ` `` ` `` `` ` ` ` ` ` ` ` ` // -WuXHh..`.....~~~~(dWuuuXXkHUuuXHH9>:<:++YY<:;::::;:::::;:::+.``?HHkHHHM>`.`
[ "expression.unary.arithmetic.add" ]
878,892
878,891
u890465662
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int N, K; string S; cin >> N; cin >> S; cin >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K]) { S[i] = '*'; } } cout << S << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int N, K; string S; cin >> N; cin >> S; cin >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) { S[i] = '*'; } } cout << S << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,893
878,894
u618697411
cpp
p03068
#include <algorithm> #include <bitset> #include <cassert> #include <chrono> #include <climits> #include <cmath> #include <ctime> #include <iomanip> #include <iostream> #include <iterator> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <unordered_map> #include <utility> #include <vector> #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define debug(x) cerr << #x << ": " << x << ", " #define debugln(x) cerr << #x << ": " << x << '\n' template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; using ll = long long; using P = pair<ll, ll>; // constexpr ll mod = 998244353; constexpr ll mod = 1e9 + 7; const double PI = acos(-1.0); mt19937_64 engine(chrono::steady_clock::now().time_since_epoch().count()); int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; string s; cin >> s; int k; cin >> k; rep(i, n) { if (s[i] != s[k + 1]) { s[i] = '*'; } } cout << s << endl; }
#include <algorithm> #include <bitset> #include <cassert> #include <chrono> #include <climits> #include <cmath> #include <ctime> #include <iomanip> #include <iostream> #include <iterator> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <unordered_map> #include <utility> #include <vector> #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define debug(x) cerr << #x << ": " << x << ", " #define debugln(x) cerr << #x << ": " << x << '\n' template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; using ll = long long; using P = pair<ll, ll>; // constexpr ll mod = 998244353; constexpr ll mod = 1e9 + 7; const double PI = acos(-1.0); mt19937_64 engine(chrono::steady_clock::now().time_since_epoch().count()); int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; string s; cin >> s; int k; cin >> k; rep(i, n) { if (s[i] != s[k - 1]) { s[i] = '*'; } } cout << s << endl; }
[ "misc.opposites", "expression.operator.arithmetic.change", "variable_access.subscript.index.change", "control_flow.branch.if.condition.change" ]
878,895
878,896
u492373312
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; k--; char ofc = s[k]; for (int i = 0; i < n; i++) { if (i == k) continue; else { if (s[i] == ofc) { s[i] = '*'; } } } cout << s << endl; return 0; }
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; k--; char ofc = s[k]; for (int i = 0; i < n; i++) { if (i == k) continue; else { if (s[i] != ofc) { s[i] = '*'; } } } cout << s << endl; return 0; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,899
878,900
u430341757
cpp
p03068
#include <iomanip> #include <iostream> // std::cout << std::setprecision(2) << 3.141; // "3.1" #include <algorithm> #include <cmath> #include <map> #include <string> #include <vector> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> plglg; typedef pair<double, ll> pdlg; typedef tuple<int, int, int> tiii; typedef tuple<ll, ll, ll> tlglglg; typedef tuple<double, double, double> tddd; static const int giga = pow(10, 9); // double pi = 3.141592653589793238463; int main(void) { string input; int n, k; cin >> n >> input >> k; char target = input[k]; for (int i = 0; i < n; i++) { if (input[i] == target) { cout << input[i]; } else { cout << '*'; } } cout << endl; return 0; }
#include <iomanip> #include <iostream> // std::cout << std::setprecision(2) << 3.141; // "3.1" #include <algorithm> #include <cmath> #include <map> #include <string> #include <vector> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> plglg; typedef pair<double, ll> pdlg; typedef tuple<int, int, int> tiii; typedef tuple<ll, ll, ll> tlglglg; typedef tuple<double, double, double> tddd; static const int giga = pow(10, 9); // double pi = 3.141592653589793238463; int main(void) { string input; int n, k; cin >> n >> input >> k; char target = input[k - 1]; for (int i = 0; i < n; i++) { if (input[i] == target) { cout << input[i]; } else { cout << '*'; } } cout << endl; return 0; }
[ "assignment.change" ]
878,905
878,906
u746560455
cpp
p03068
#include <algorithm> #include <iostream> #include <string> #include <vector> using namespace std; #define ENDL "\n" typedef long long int llint; int main() { int N; string S; int K; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] == S[K]) { cout << S[i]; } else { cout << "*"; } } cout << ENDL; return 0; }
#include <algorithm> #include <iostream> #include <string> #include <vector> using namespace std; #define ENDL "\n" typedef long long int llint; int main() { int N; string S; int K; cin >> N >> S >> K; K--; for (int i = 0; i < N; i++) { if (S[i] == S[K]) { cout << S[i]; } else { cout << "*"; } } cout << ENDL; return 0; }
[ "expression.unary.arithmetic.add" ]
878,907
878,908
u402629484
cpp
p03068
#include <algorithm> #include <climits> #include <cmath> #include <iostream> #include <queue> #include <stdio.h> #include <string> #include <vector> const int mod = 1e9 + 7; const int INF = 1e9; using namespace std; typedef long long ll; int main() { int n; string s; int k; cin >> n >> s >> k; char x = s[k]; for (int i = 0; i < n; i++) { if (s[i] == x) { cout << x; } else { cout << '*'; } } }
#include <algorithm> #include <climits> #include <cmath> #include <iostream> #include <queue> #include <stdio.h> #include <string> #include <vector> const int mod = 1e9 + 7; const int INF = 1e9; using namespace std; typedef long long ll; int main() { int n; string s; int k; cin >> n >> s >> k; char x = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] == x) { cout << x; } else { cout << '*'; } } }
[ "assignment.change" ]
878,909
878,910
u883323885
cpp
p03068
#include <iostream> using namespace std; int main() { int N; cin >> N; char s[11]; for (int i = 0; i < N; i++) cin >> s[i]; int K; cin >> K; for (int i = 0; i < N; i++) { if (s[i] == s[K]) cout << s[i]; else cout << '*'; } cout << endl; }
#include <iostream> using namespace std; int main() { int N; cin >> N; char s[11]; for (int i = 0; i < N; i++) cin >> s[i]; int K; cin >> K; K--; for (int i = 0; i < N; i++) { if (s[i] == s[K]) cout << s[i]; else cout << '*'; } cout << endl; }
[ "expression.unary.arithmetic.add" ]
878,913
878,914
u058186113
cpp
p03068
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; for (int i = 0; i < s.length(); i++) { if (s[i] != s[k]) { s[i] = '*'; } } cout << s << endl; return 0; }
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; for (int i = 0; i < s.length(); i++) { if (s[i] != s[k - 1]) { s[i] = '*'; } } cout << s << endl; return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,917
878,918
u891531063
cpp
p03068
#include <bits/stdc++.h> using namespace std; const double PI = acos(-1); const double EPS = 1e-15; using ll = long long; using ull = unsigned long long; const int inf = 2e9; const ll INF = 2e18; const ll MOD = 1e9 + 7; const ll MOD1 = 998244353; typedef pair<int, int> P; #define REP(i, n) for (int i = 0; i < (n); i++) #define sz(s) (s).size() #define pb push_back #define fi first #define se second #define mp make_pair int main() { int n, k; string s; cin >> n >> s >> k; REP(i, n) { if (s[i] == s[k]) cout << s[k]; else cout << "*"; } cout << endl; return 0; }
#include <bits/stdc++.h> using namespace std; const double PI = acos(-1); const double EPS = 1e-15; using ll = long long; using ull = unsigned long long; const int inf = 2e9; const ll INF = 2e18; const ll MOD = 1e9 + 7; const ll MOD1 = 998244353; typedef pair<int, int> P; #define REP(i, n) for (int i = 0; i < (n); i++) #define sz(s) (s).size() #define pb push_back #define fi first #define se second #define mp make_pair int main() { int n, k; string s; cin >> n >> s >> k; k--; REP(i, n) { if (s[i] == s[k]) cout << s[k]; else cout << "*"; } cout << endl; return 0; }
[ "expression.unary.arithmetic.add" ]
878,919
878,920
u891178744
cpp
p03068
#include <bits/stdc++.h> #define REP(i, n) for (int i = 0; i < n; i++) #define REPR(i, n) for (int i = n; i >= 0; i--) #define FOR(i, m, n) for (int i = m; i < n; i++) #define FORR(i, m, n) for (int i = m; i >= n; i--) #define SORT(v, n) sort(v, v + n); #define VSORT(v) sort(v.begin(), v.end()); #define llong long long #define pb(a) push_back(a) #define INF using namespace std; typedef pair<int, int> P; typedef pair<llong, llong> LP; typedef pair<int, P> PP; typedef pair<llong, LP> LPP; // vector<tuple<long long, long long, long long>>vec; int dy[] = {0, 0, 1, -1, 0}; int dx[] = {1, -1, 0, 0, 0}; int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k]) { s[i] = '*'; } } cout << s << endl; }
#include <bits/stdc++.h> #define REP(i, n) for (int i = 0; i < n; i++) #define REPR(i, n) for (int i = n; i >= 0; i--) #define FOR(i, m, n) for (int i = m; i < n; i++) #define FORR(i, m, n) for (int i = m; i >= n; i--) #define SORT(v, n) sort(v, v + n); #define VSORT(v) sort(v.begin(), v.end()); #define llong long long #define pb(a) push_back(a) #define INF using namespace std; typedef pair<int, int> P; typedef pair<llong, llong> LP; typedef pair<int, P> PP; typedef pair<llong, LP> LPP; // vector<tuple<long long, long long, long long>>vec; int dy[] = {0, 0, 1, -1, 0}; int dx[] = {1, -1, 0, 0, 0}; int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k - 1]) { s[i] = '*'; } } cout << s << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,921
878,922
u511379665
cpp
p03068
#include <bits/stdc++.h> using namespace std; void solve(); int main() { ios::sync_with_stdio(0); cin.tie(0); solve(); }; typedef long long ll; template <typename Type> void print_collection(Type coll) { cout << "{ "; for (auto e : coll) cout << e << ' '; cout << "}\n"; } void solve() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; ++i) if (s[i] != s[k]) s[i] = '*'; cout << s << '\n'; }
#include <bits/stdc++.h> using namespace std; void solve(); int main() { ios::sync_with_stdio(0); cin.tie(0); solve(); }; typedef long long ll; template <typename Type> void print_collection(Type coll) { cout << "{ "; for (auto e : coll) cout << e << ' '; cout << "}\n"; } void solve() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; ++i) if (s[i] != s[k - 1]) s[i] = '*'; cout << s << '\n'; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,923
878,924
u246108530
cpp
p03068
#include <iostream> using namespace std; int main(void) { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k]) { s[i] = '*'; } } std::cout << s << std::endl; }
#include <iostream> using namespace std; int main(void) { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k - 1]) { s[i] = '*'; } } std::cout << s << std::endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,925
878,926
u687765150
cpp
p03068
#include <iostream> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < s.size(); i++) { if (s[i] != s[k]) { s[i] = '*'; } } cout << s << endl; }
#include <iostream> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; for (int i = 0; i < s.size(); i++) { if (s[i] != s[k - 1]) { s[i] = '*'; } } cout << s << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,931
878,932
u203045601
cpp
p03068
#include <iostream> #include <string> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K + 1]) S[i] = '*'; } cout << S << endl; }
#include <iostream> #include <string> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) S[i] = '*'; } cout << S << endl; }
[ "misc.opposites", "expression.operator.arithmetic.change", "variable_access.subscript.index.change", "control_flow.branch.if.condition.change" ]
878,933
878,934
u122571613
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { string S; int N, K; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S.at(i) != S.at(K)) { S.at(i) = '*'; } } cout << S << endl; }
#include <bits/stdc++.h> using namespace std; int main() { string S; int N, K; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S.at(i) != S.at(K - 1)) { S.at(i) = '*'; } } cout << S << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,935
878,936
u346059918
cpp
p03068
#include <iostream> using namespace std; int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; char c = s[k]; string ans = s; for (int i = 0; i < s.length(); i++) { ans[i] = ans[i] == c ? c : '*'; } cout << ans << endl; return 0; }
#include <iostream> using namespace std; int main() { int n; cin >> n; string s; cin >> s; int k; cin >> k; char c = s[k - 1]; string ans = s; for (int i = 0; i < s.length(); i++) { ans[i] = ans[i] == c ? c : '*'; } cout << ans << endl; return 0; }
[ "assignment.change" ]
878,940
878,941
u880126159
cpp
p03068
#include <algorithm> #include <cmath> #include <cstdio> #include <iostream> #include <map> #include <queue> #include <set> #include <sstream> #include <string> #include <vector> #define FOR(idx, begin, end) \ for (int idx = (int)(begin); idx < (int)(end); ++idx) #ifdef _DEBUG #define DMP(x) cerr << #x << ": " << x << "\n" #else #define DMP(x) ((void)0) #endif using namespace std; typedef long long lint; const int MOD = 1000000007, INF = 1111111111; const double EPS = 1e-9; int main() { cin.tie(0); int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K]) S[i] = '*'; } cout << S; return 0; }
#include <algorithm> #include <cmath> #include <cstdio> #include <iostream> #include <map> #include <queue> #include <set> #include <sstream> #include <string> #include <vector> #define FOR(idx, begin, end) \ for (int idx = (int)(begin); idx < (int)(end); ++idx) #ifdef _DEBUG #define DMP(x) cerr << #x << ": " << x << "\n" #else #define DMP(x) ((void)0) #endif using namespace std; typedef long long lint; const int MOD = 1000000007, INF = 1111111111; const double EPS = 1e-9; int main() { cin.tie(0); int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) S[i] = '*'; } cout << S; return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,942
878,943
u532573979
cpp
p03068
// warm heart, wagging tail,and a smile just for you! // ███████████ // ███╬╬╬╬╬╬╬╬╬╬███ // ███╬╬╬╬╬████╬╬╬╬╬╬███ // ███████████ // ██╬╬╬╬╬████╬╬████╬╬╬╬╬██ // █████████╬╬╬╬╬████████████╬╬╬╬╬██╬╬╬╬╬╬███╬╬╬╬╬██ // ████████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████████╬╬╬╬╬╬██╬╬╬╬╬╬╬██ // ████╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████████╬╬╬╬╬╬╬╬╬╬╬██ // ███╬╬╬█╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬███╬╬╬╬╬╬╬█████ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬████████╬╬╬╬╬██ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬███╬╬╬╬╬╬╬╬╬███ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████╬╬╬╬╬╬╬██ // ████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬████╬╬╬╬╬████ // █████████████╬╬╬╬╬╬╬╬██╬╬╬╬╬████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬███╬╬╬╬██████ // ████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬██████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██████╬╬╬╬╬╬╬███████████╬╬╬╬╬╬╬╬██╬╬╬██╬╬╬██ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬████╬╬╬╬╬╬╬╬╬╬╬█╬╬╬╬╬╬╬██╬╬╬╬╬╬╬╬██ // ██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬▓▓▓▓▓▓╬╬╬████╬╬████╬╬╬╬╬╬╬▓▓▓▓▓▓▓▓██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬╬╬╬███ // ██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██████▓▓▓▓▓▓▓╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬▓▓▓▓▓▓▓██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬█████ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬███╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬████████ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬█████╬╬╬╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬███╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██ // ██████████████ // ████╬╬╬╬╬╬███████████████████████████╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬████ // ███████ █████ // ███████████████████ #include "bits/stdc++.h" using namespace std; #define MOD 1000000007 const double EPS = 1e-9; #define INF (1LL << 60) #define fs first #define sc second #define pb push_back #define int long long #define FOR(i, a, b) for (int i = (a); i < (b); i++) #define RFOR(i, a, b) for (int i = (b - 1); i >= a; i--) #define REP(i, n) FOR(i, 0, n) #define RREP(i, n) RFOR(i, 0, n) #define ITR(itr, mp) for (auto itr = (mp).begin(); itr != (mp).end(); ++itr) #define RITR(itr, mp) for (auto itr = (mp).rbegin(); itr != (mp).rend(); ++itr) #define range(i, a, b) ((a) <= (i) && (i) < (b)) #define debug(x) cout << #x << " = " << (x) << endl; #define SP << " " << typedef pair<int, int> P; typedef vector<vector<P>> Graph; typedef vector<int> vec; typedef vector<vector<int>> mat; signed main() { ios::sync_with_stdio(false); cin.tie(0); int n, k; string s; cin >> n >> s >> k; REP(i, n) { if (s[i] == s[k]) cout << s[i]; else cout << "*"; } cout << endl; return 0; }
// warm heart, wagging tail,and a smile just for you! // ███████████ // ███╬╬╬╬╬╬╬╬╬╬███ // ███╬╬╬╬╬████╬╬╬╬╬╬███ // ███████████ // ██╬╬╬╬╬████╬╬████╬╬╬╬╬██ // █████████╬╬╬╬╬████████████╬╬╬╬╬██╬╬╬╬╬╬███╬╬╬╬╬██ // ████████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████████╬╬╬╬╬╬██╬╬╬╬╬╬╬██ // ████╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████████╬╬╬╬╬╬╬╬╬╬╬██ // ███╬╬╬█╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬███╬╬╬╬╬╬╬█████ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬████████╬╬╬╬╬██ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬███╬╬╬╬╬╬╬╬╬███ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████╬╬╬╬╬╬╬██ // ████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬████╬╬╬╬╬████ // █████████████╬╬╬╬╬╬╬╬██╬╬╬╬╬████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬███╬╬╬╬██████ // ████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬██████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██████╬╬╬╬╬╬╬███████████╬╬╬╬╬╬╬╬██╬╬╬██╬╬╬██ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬████╬╬╬╬╬╬╬╬╬╬╬█╬╬╬╬╬╬╬██╬╬╬╬╬╬╬╬██ // ██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬▓▓▓▓▓▓╬╬╬████╬╬████╬╬╬╬╬╬╬▓▓▓▓▓▓▓▓██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬╬╬╬███ // ██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██████▓▓▓▓▓▓▓╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬▓▓▓▓▓▓▓██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██╬╬╬╬█████ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬███╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬█████╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬████████ // ███╬╬╬╬╬╬╬╬╬╬╬╬╬█████╬╬╬╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬███╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬██ // ██████████████ // ████╬╬╬╬╬╬███████████████████████████╬╬╬╬╬██╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬╬████ // ███████ █████ // ███████████████████ #include "bits/stdc++.h" using namespace std; #define MOD 1000000007 const double EPS = 1e-9; #define INF (1LL << 60) #define fs first #define sc second #define pb push_back #define int long long #define FOR(i, a, b) for (int i = (a); i < (b); i++) #define RFOR(i, a, b) for (int i = (b - 1); i >= a; i--) #define REP(i, n) FOR(i, 0, n) #define RREP(i, n) RFOR(i, 0, n) #define ITR(itr, mp) for (auto itr = (mp).begin(); itr != (mp).end(); ++itr) #define RITR(itr, mp) for (auto itr = (mp).rbegin(); itr != (mp).rend(); ++itr) #define range(i, a, b) ((a) <= (i) && (i) < (b)) #define debug(x) cout << #x << " = " << (x) << endl; #define SP << " " << typedef pair<int, int> P; typedef vector<vector<P>> Graph; typedef vector<int> vec; typedef vector<vector<int>> mat; signed main() { ios::sync_with_stdio(false); cin.tie(0); int n, k; string s; cin >> n >> s >> k; REP(i, n) { if (s[i] == s[k - 1]) cout << s[i]; else cout << "*"; } cout << endl; return 0; }
[ "control_flow.branch.if.condition.change" ]
878,946
878,947
u239493918
cpp
p03068
#include <algorithm> #include <cmath> #include <iostream> #include <string> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char a = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] != a) { s[i] == '*'; } } cout << s << endl; }
#include <algorithm> #include <cmath> #include <iostream> #include <string> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char a = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] != a) { s[i] = '*'; } } cout << s << endl; }
[ "expression.operation.compare.replace.remove", "assignment.replace.add", "misc.typo" ]
878,948
878,949
u401900157
cpp
p03068
#include <algorithm> #include <cmath> #include <iostream> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char a = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] != a) { s[i] == '*'; } } cout << s << endl; }
#include <algorithm> #include <cmath> #include <iostream> #include <string> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char a = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] != a) { s[i] = '*'; } } cout << s << endl; }
[ "import.add", "expression.operation.compare.replace.remove", "assignment.replace.add", "misc.typo" ]
878,950
878,949
u401900157
cpp
p03068
#include <iostream> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char c = s[k]; for (int i = 0; i < n; i++) { if (s[i] == c) { s[i] = '*'; } } cout << s << endl; }
#include <iostream> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char c = s[k - 1]; for (int i = 0; i < n; i++) { if (s[i] != c) { s[i] = '*'; } } cout << s << endl; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
878,951
878,952
u234531758
cpp
p03068
#include <iostream> #include <string> int main() { int N; std::string S; int K; std::cin >> N; std::cin >> S; std::cin >> K; for (int i = 0; i < N; ++i) { if (S[i] == S[K - 1]) { std::cout << S[K]; } else { std::cout << "*"; } } return 0; }
#include <iostream> #include <string> int main() { int N; std::string S; int K; std::cin >> N; std::cin >> S; std::cin >> K; for (int i = 0; i < N; ++i) { if (S[i] == S[K - 1]) { std::cout << S[K - 1]; } else { std::cout << "*"; } } return 0; }
[ "expression.operation.binary.add" ]
878,956
878,957
u531942163
cpp
p03068
#include <iostream> #include <string> int main() { int N; std::string S; int K; std::cin >> N; std::cin >> S; std::cin >> K; for (int i = 0; i < N; ++i) { if (S[i] == S[K]) { std::cout << S[K]; } else { std::cout << "*"; } } return 0; }
#include <iostream> #include <string> int main() { int N; std::string S; int K; std::cin >> N; std::cin >> S; std::cin >> K; for (int i = 0; i < N; ++i) { if (S[i] == S[K - 1]) { std::cout << S[K - 1]; } else { std::cout << "*"; } } return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,958
878,957
u531942163
cpp
p03068
#include <iostream> #include <string> int main() { int N; std::string S; int K; std::cin >> N; std::cin >> S; std::cin >> K; for (int i; i < N; ++i) { if (S[i] == S[K]) { std::cout << S[K]; } else { std::cout << "*"; } } return 0; }
#include <iostream> #include <string> int main() { int N; std::string S; int K; std::cin >> N; std::cin >> S; std::cin >> K; for (int i = 0; i < N; ++i) { if (S[i] == S[K - 1]) { std::cout << S[K - 1]; } else { std::cout << "*"; } } return 0; }
[ "control_flow.loop.for.initializer.change", "variable_declaration.value.change", "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,959
878,957
u531942163
cpp
p03068
#include <algorithm> #include <cmath> #include <iostream> #include <limits> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <unordered_map> #include <vector> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef int itn; typedef vector<int> vi; typedef vector<ll> vl; const int inf = numeric_limits<int>::max() >> 2; const ll linf = numeric_limits<ll>::max() >> 2; const ull ulinf = numeric_limits<ull>::max() >> 2; const double pi = acos(-1); const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const int dx8[8] = {-1, 0, 1, -1, 1, -1, 0, 1}; const int dy8[8] = {-1, -1, -1, 0, 0, 1, 1, 1}; #define p_queue(i) priority_queue<i> #define rp_queue(i) priority_queue<i, vector<i>, greater<i>> #define umap(i, j) unordered_map<i, j> #define P(p) cout << (p) << endl #define PS(p) cout << (p) << " " #define IN cin >> #define rep(i, m, n) for (int i = (m); i < (int)(n); i++) #define rrep(i, m, n) for (int i = (m - 1); i >= (int)(n); i--) #define inrep(n, a) \ for (int i = 0; i < (int)(n); i++) \ cin >> a[i]; #define mod(i) ((i) % (ll)(1e9 + 7)) #define divm(a, b) (mod(a * modpow((ll)b, (ll)(1e9 + 5)))) #define rsort(a, b, c) sort(a, b, greater<c>()) #define vsort(v) sort(v.begin(), v.end()) #define rvsort(v, c) sort(v.begin(), v.end(), greater<c>()) #define ft first #define sd second #define pb push_back #define it insert #define sz(x) ((int)(x).size()) #define lb(a, n, k) (lower_bound(a, a + n, k) - a) #define vlb(a, k) (lower_bound(a.begin(), a.end(), k) - a.begin()) #define ub(a, n, k) (upper_bound(a, a + n, k) - a) #define vub(a, k) (upper_bound(a.begin(), a.end(), k) - a.begin()) #define YES cout << "YES" << endl #define NO cout << "NO" << endl #define Yes cout << "Yes" << endl #define No cout << "No" << endl #define yes cout << "yes" << endl #define no cout << "no" << endl #define ret return ll modpow(ll i, ll j) { ll tmp = 1; while (j) { if (j % 2) tmp = mod(tmp * i); i = mod(i * i); j /= 2; } return tmp; } ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; } ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } vector<string> split(const string &str, char sep) { vector<string> v; stringstream ss(str); string buffer; while (getline(ss, buffer, sep)) { v.push_back(buffer); } return v; } // ll ncr[100][100]; // ll nCr(int n, int r){if(n==r) ret ncr[n][r] = 1; if(r==0) ret ncr[n][r] = 1; // if(r==1) ret ncr[n][r] = n;if(ncr[n][r]) ret ncr[n][r]; ret ncr[n][r] = // nCr(n-1,r) + nCr(n-1,r-1);} // ll npr[100][100]={}; // ll nPr(int n,int r){if(npr[n][r])ret npr[n][r];if(r==0)ret npr[n][r] = // 1;if(r==1)ret npr[n][r] = n;ret npr[n][r] = n * nPr(n-1,r-1);} // ll nHr(int n,int r){ret nCr(n+r-1,r);} /////////////////////////////////////////////////////////////////////////// int main() { int n, k; string s; cin >> n >> s >> k; rep(i, 0, n) { if (s[k] != s[i]) cout << "*"; else cout << s[i]; } cout << endl; return 0; }
#include <algorithm> #include <cmath> #include <iostream> #include <limits> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <unordered_map> #include <vector> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef int itn; typedef vector<int> vi; typedef vector<ll> vl; const int inf = numeric_limits<int>::max() >> 2; const ll linf = numeric_limits<ll>::max() >> 2; const ull ulinf = numeric_limits<ull>::max() >> 2; const double pi = acos(-1); const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const int dx8[8] = {-1, 0, 1, -1, 1, -1, 0, 1}; const int dy8[8] = {-1, -1, -1, 0, 0, 1, 1, 1}; #define p_queue(i) priority_queue<i> #define rp_queue(i) priority_queue<i, vector<i>, greater<i>> #define umap(i, j) unordered_map<i, j> #define P(p) cout << (p) << endl #define PS(p) cout << (p) << " " #define IN cin >> #define rep(i, m, n) for (int i = (m); i < (int)(n); i++) #define rrep(i, m, n) for (int i = (m - 1); i >= (int)(n); i--) #define inrep(n, a) \ for (int i = 0; i < (int)(n); i++) \ cin >> a[i]; #define mod(i) ((i) % (ll)(1e9 + 7)) #define divm(a, b) (mod(a * modpow((ll)b, (ll)(1e9 + 5)))) #define rsort(a, b, c) sort(a, b, greater<c>()) #define vsort(v) sort(v.begin(), v.end()) #define rvsort(v, c) sort(v.begin(), v.end(), greater<c>()) #define ft first #define sd second #define pb push_back #define it insert #define sz(x) ((int)(x).size()) #define lb(a, n, k) (lower_bound(a, a + n, k) - a) #define vlb(a, k) (lower_bound(a.begin(), a.end(), k) - a.begin()) #define ub(a, n, k) (upper_bound(a, a + n, k) - a) #define vub(a, k) (upper_bound(a.begin(), a.end(), k) - a.begin()) #define YES cout << "YES" << endl #define NO cout << "NO" << endl #define Yes cout << "Yes" << endl #define No cout << "No" << endl #define yes cout << "yes" << endl #define no cout << "no" << endl #define ret return ll modpow(ll i, ll j) { ll tmp = 1; while (j) { if (j % 2) tmp = mod(tmp * i); i = mod(i * i); j /= 2; } return tmp; } ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; } ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } vector<string> split(const string &str, char sep) { vector<string> v; stringstream ss(str); string buffer; while (getline(ss, buffer, sep)) { v.push_back(buffer); } return v; } // ll ncr[100][100]; // ll nCr(int n, int r){if(n==r) ret ncr[n][r] = 1; if(r==0) ret ncr[n][r] = 1; // if(r==1) ret ncr[n][r] = n;if(ncr[n][r]) ret ncr[n][r]; ret ncr[n][r] = // nCr(n-1,r) + nCr(n-1,r-1);} // ll npr[100][100]={}; // ll nPr(int n,int r){if(npr[n][r])ret npr[n][r];if(r==0)ret npr[n][r] = // 1;if(r==1)ret npr[n][r] = n;ret npr[n][r] = n * nPr(n-1,r-1);} // ll nHr(int n,int r){ret nCr(n+r-1,r);} /////////////////////////////////////////////////////////////////////////// int main() { int n, k; string s; cin >> n >> s >> k; rep(i, 0, n) { if (s[k - 1] != s[i]) cout << "*"; else cout << s[i]; } cout << endl; return 0; }
[ "control_flow.branch.if.condition.change" ]
878,962
878,963
u254521846
cpp
p03068
#define _CRT_SECURE_NO_WARNINGS #include <algorithm> #include <iostream> #include <map> #include <math.h> #include <queue> #include <set> #include <string> #include <vector> #pragma comment(linker, "/STACK:66777216") using namespace std; #define ll long long #define ld long double int main() { ios_base::sync_with_stdio(false); #ifndef ONLINE_JUDGE // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); #endif ll a, b; cin >> a; string s; cin >> s >> b; for (ll i = 0; i < s.length(); i++) { if (s[i - 1] != s[b]) s[i] = '*'; } cout << s; }
#define _CRT_SECURE_NO_WARNINGS #include <algorithm> #include <iostream> #include <map> #include <math.h> #include <queue> #include <set> #include <string> #include <vector> #pragma comment(linker, "/STACK:66777216") using namespace std; #define ll long long #define ld long double int main() { ios_base::sync_with_stdio(false); #ifndef ONLINE_JUDGE // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); #endif ll a, b; cin >> a; string s; cin >> s >> b; for (ll i = 0; i < s.length(); i++) { if (s[i] != s[b - 1]) s[i] = '*'; } cout << s; }
[ "control_flow.loop.for.condition.change", "expression.operation.binary.remove", "control_flow.branch.if.condition.change", "misc.off_by_one" ]
878,964
878,965
u751113156
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int b, n; cin >> n; char a[20]; cin >> a; cin >> b; for (int i = 0; i < n; i++) { if (a[i] != a[b]) { cout << "*"; } else cout << a[i]; } cout << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int b, n; cin >> n; char a[20]; cin >> a; cin >> b; for (int i = 0; i < n; i++) { if (a[i] != a[b - 1]) { cout << "*"; } else cout << a[i]; } cout << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,969
878,970
u501363790
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int a, b, i; char c[11]; scanf("%d", &a); getchar(); scanf("%s", c); scanf("%d", &b); for (i = 0; i < a; i++) { if (c[i] == c[b]) printf("%c", c[i]); else printf("*"); } return 0; }
#include <bits/stdc++.h> using namespace std; int main() { int a, b, i; char c[11]; scanf("%d", &a); getchar(); scanf("%s", c); scanf("%d", &b); for (i = 0; i < a; i++) { if (c[i] == c[b - 1]) printf("%c", c[i]); else printf("*"); } return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,971
878,972
u356929542
cpp
p03068
#include <iostream> #include <string> using namespace std; int main(int argc, char *argv[]) { int N, K; string S; cin >> N; cin >> S; cin >> K; // string a = S[K]; char a = S[K]; string ans; for (int i = 0; i < N; i++) { if (S[i] != a) ans.push_back('*'); else ans.push_back(S[i]); } cout << ans << endl; return 0; }
#include <iostream> #include <string> using namespace std; int main(int argc, char *argv[]) { int N, K; string S; cin >> N; cin >> S; cin >> K; char a = S[K - 1]; string ans; for (int i = 0; i < N; i++) { if (S[i] != a) ans.push_back('*'); else ans.push_back(S[i]); } cout << ans << endl; return 0; }
[ "assignment.change" ]
878,975
878,976
u698571659
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char c = s.at(k); for (int i = 0; i < n; i++) { if (s.at(i) != c) { s.at(i) = '*'; } } cout << s << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int n, k; string s; cin >> n >> s >> k; char c = s.at(k - 1); for (int i = 0; i < n; i++) { if (s.at(i) != c) { s.at(i) = '*'; } } cout << s << endl; }
[ "assignment.change" ]
878,983
878,984
u974931918
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int N, K; cin >> N; string s; cin >> s >> K; char x; x = s.at(K); for (int i = 0; i < N; i++) { if (x != s.at(i)) { cout << "*"; } else { cout << x; } } }
#include <bits/stdc++.h> using namespace std; int main() { int N, K; cin >> N; string s; cin >> s >> K; char x; x = s.at(K - 1); for (int i = 0; i < N; i++) { if (x != s.at(i)) { cout << "*"; } else { cout << x; } } }
[ "assignment.change" ]
878,985
878,986
u041855176
cpp
p03068
#include <bits/stdc++.h> #define INF 100100100 #define MOD 1000000007 using namespace std; using ll = long long; using ull = unsigned long long; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[K] != S[i]) { S[i] = '*'; } } cout << S << endl; return 0; }
#include <bits/stdc++.h> #define INF 100100100 #define MOD 1000000007 using namespace std; using ll = long long; using ull = unsigned long long; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[K - 1] != S[i]) { S[i] = '*'; } } cout << S << endl; return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
878,992
878,993
u453634104
cpp
p03068
#include <iostream> using namespace std; int main() { int N, K; cin >> N; string S; cin >> S >> K; for (int i = 0; i < N - 1; i++) { if (S[i] != S[K - 1]) { S[i] = '*'; } } cout << S; return 0; }
#include <iostream> using namespace std; int main() { int N, K; cin >> N; string S; cin >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) { S[i] = '*'; } } cout << S; return 0; }
[ "control_flow.loop.for.condition.change", "expression.operation.binary.remove" ]
879,025
879,026
u490963780
cpp
p03068
#include <iostream> using namespace std; int main() { int N, K; cin >> N; string S; cin >> S >> K; for (int i = 0; i < N - 1; i++) { if (S[i] != S[K + 1]) { S[i] = '*'; } } cout << S; return 0; }
#include <iostream> using namespace std; int main() { int N, K; cin >> N; string S; cin >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) { S[i] = '*'; } } cout << S; return 0; }
[ "control_flow.loop.for.condition.change", "expression.operation.binary.remove", "misc.opposites", "expression.operator.arithmetic.change", "variable_access.subscript.index.change", "control_flow.branch.if.condition.change" ]
879,027
879,026
u490963780
cpp
p03068
#include <iostream> using namespace std; int main() { int N, K; cin >> N; string S; cin >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K]) { S[i] = '*'; } } cout << S; return 0; }
#include <iostream> using namespace std; int main() { int N, K; cin >> N; string S; cin >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) { S[i] = '*'; } } cout << S; return 0; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
879,028
879,026
u490963780
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] == S[K - 1]) S[i] = '*'; } cout << S << endl; }
#include <bits/stdc++.h> using namespace std; int main() { int N, K; string S; cin >> N >> S >> K; for (int i = 0; i < N; i++) { if (S[i] != S[K - 1]) S[i] = '*'; } cout << S << endl; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
879,038
879,039
u339937125
cpp
p03068
#include <cstdio> #include <iostream> using namespace std; int main() { int n, k; char str[10]; scanf("%d", &n); scanf("%s", str); scanf("%d", &k); for (int i = 0; i < n; i++) { if (str[i + 1] != str[k]) { str[i] = '*'; } } printf("%s", str); return 0; }
#include <cstdio> #include <iostream> using namespace std; int main() { int n, k; char str[10]; scanf("%d", &n); scanf("%s", str); scanf("%d", &k); k--; for (int i = 0; i < n; i++) { if (str[i] != str[k]) { str[i] = '*'; } } printf("%s", str); return 0; }
[ "expression.unary.arithmetic.add", "control_flow.loop.for.condition.change", "expression.operation.binary.remove" ]
879,047
879,048
u152050779
cpp
p03068
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; string a; cin >> a; int k; cin >> k; k--; char x = a[k]; for (int i = 0; i < n; i++) { if (a[i] == x) cout << "x"; else cout << "*"; } return 0; }
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; string a; cin >> a; int k; cin >> k; k--; char x = a[k]; for (int i = 0; i < n; i++) { if (a[i] == x) cout << x; else cout << "*"; } return 0; }
[]
879,051
879,052
u432702669
cpp
p03068
#include <iostream> #include <string> using namespace std; int main() { int k, n; string s; cin >> n >> s >> k; char hoge = s.at(k); for (auto &&i = s.begin(); i < s.end(); i++) { if (*i != hoge) { *i = '*'; } } cout << s << endl; }
#include <iostream> #include <string> using namespace std; int main() { int k, n; string s; cin >> n >> s >> k; char hoge = s.at(k - 1); for (auto &&i = s.begin(); i < s.end(); i++) { if (*i != hoge) { *i = '*'; } } cout << s << endl; }
[ "assignment.change" ]
879,057
879,058
u324072562
cpp
p03068
#include <stdio.h> int main() { int a, b; char c[10]; int i; char tmp; scanf("%d\n", &a); for (i = 0; i < a; i++) { scanf("%c\n", &c[i]); } scanf("%d", &b); tmp = c[b]; for (i = 0; i < a; i++) { if (c[i] != c[b]) { c[i] = '*'; } printf("%c", c[i]); } printf("\n"); return 0; }
#include <stdio.h> int main() { int a, b; char c[10]; int i; char tmp; scanf("%d\n", &a); for (i = 0; i < a; i++) { scanf("%c\n", &c[i]); } scanf("%d", &b); b = b - 1; tmp = c[b]; for (i = 0; i < a; i++) { if (c[i] != c[b]) { c[i] = '*'; } printf("%c", c[i]); } printf("\n"); return 0; }
[ "assignment.add" ]
879,061
879,062
u251610528
cpp
p03068
#include <bits/stdc++.h> #include <string> #include <vector> using namespace std; int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; for (int i = 1; i <= n; i++) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; }
#include <bits/stdc++.h> #include <string> #include <vector> using namespace std; int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k - 1]) s[i] = '*'; } cout << s << endl; }
[ "literal.number.change", "variable_declaration.value.change", "control_flow.loop.for.initializer.change", "expression.off_by_one", "expression.operator.compare.change", "control_flow.loop.for.condition.change", "expression.operation.binary.change", "control_flow.branch.if.condition.change", "misc.of...
879,067
879,068
u672995180
cpp
p03068
#include <bits/stdc++.h> #include <string> #include <vector> using namespace std; int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k]) s[i] = '*'; } cout << s << endl; }
#include <bits/stdc++.h> #include <string> #include <vector> using namespace std; int main() { int n, k; string s; cin >> n; cin >> s; cin >> k; for (int i = 0; i < n; i++) { if (s[i] != s[k - 1]) s[i] = '*'; } cout << s << endl; }
[ "control_flow.branch.if.condition.change", "control_flow.loop.for.condition.change", "misc.off_by_one" ]
879,069
879,068
u672995180
cpp
p03068
#include <iostream> using namespace std; int main() { int n, k; string s, result; cin >> n; cin >> s; cin >> k; char repl = s[k - 1]; result = ""; for (int i = 0; i < n; i++) { char k = s[i]; if (repl == k) { result += "*"; } else { result += k; } } cout << result << endl; return 0; }
#include <iostream> using namespace std; int main() { int n, k; string s, result; cin >> n; cin >> s; cin >> k; char repl = s[k - 1]; result = ""; for (int i = 0; i < n; i++) { char k = s[i]; if (repl != k) { result += "*"; } else { result += k; } } cout << result << endl; return 0; }
[ "misc.opposites", "expression.operator.compare.change", "control_flow.branch.if.condition.change" ]
879,093
879,094
u019035087
cpp
p03068
#include "bits/stdc++.h" using namespace std; typedef long long ll; template <class T> bool INRANGE(T x, T a, T b) { return a <= x && x <= b; } //#define REP(i,n) for(int i=0;i<(n);++i) #define ALL(v) (v).begin(), (v).end() #define RALL(a) (a).rbegin(), (a).rend() #define debug(x) \ cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" \ << " " << __FILE__ << endl; #define PB push_back #define INF 1e9 #define MOD 1e9 + 7 #define EPS 1e-9 typedef vector<int> vi; typedef vector<string> vs; typedef vector<vi> vvi; typedef pair<int, int> pii; int main() { cin.tie(0); ios::sync_with_stdio(false); int N, K; string S; cin >> N >> S >> K; char ch = S[K + 1]; for (int i = 0; i < (int)S.length(); i++) { if (S[i] != ch) S[i] = '*'; } cout << S << endl; return 0; }
#include "bits/stdc++.h" using namespace std; typedef long long ll; template <class T> bool INRANGE(T x, T a, T b) { return a <= x && x <= b; } //#define REP(i,n) for(int i=0;i<(n);++i) #define ALL(v) (v).begin(), (v).end() #define RALL(a) (a).rbegin(), (a).rend() #define debug(x) \ cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" \ << " " << __FILE__ << endl; #define PB push_back #define INF 1e9 #define MOD 1e9 + 7 #define EPS 1e-9 typedef vector<int> vi; typedef vector<string> vs; typedef vector<vi> vvi; typedef pair<int, int> pii; int main() { cin.tie(0); ios::sync_with_stdio(false); int N, K; string S; cin >> N >> S >> K; char ch = S[K - 1]; for (int i = 0; i < (int)S.length(); i++) { if (S[i] != ch) S[i] = '*'; } cout << S << endl; return 0; }
[ "misc.opposites", "expression.operator.arithmetic.change", "variable_access.subscript.index.change", "expression.operation.binary.change" ]
879,095
879,096
u299377613
cpp