-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA_AB_Balance.cpp
93 lines (82 loc) · 1.94 KB
/
A_AB_Balance.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/**
* Bismillahir Rahmanir Rahim
* Author: Ashfak Hossain Evan, American International University, Bangladesh
* Created: 26/10/2023 23:46:18
**/
#include <bits/stdc++.h>
#ifdef BERLIN
#include "algo/debug.h"
#else
#define debug(...) 42
#endif
#define all(x) (x).begin(), (x).end()
#define sz(x) ((long long)x.size())
#define char2Int(c) (c - '0')
#define lastEle(vec) vec[vec.size() - 1]
#define PI 3.1415926535897932384626433832795l
#define endl '\n'
#define f first
#define s second
#define pb push_back
#define range(i, v) for (auto &i : v)
#define fix(prec) \
{ \
cout << setprecision(prec) << fixed; \
}
#define mem(arr, v) memset(arr, v, sizeof(arr))
#define getunique(v) \
{ \
sort(all(v)); \
v.erase(unique(all(v)), v.end()); \
}
#define Muichiro \
{ \
ios_base::sync_with_stdio(false); \
}
#define Tokito \
{ \
cin.tie(NULL); \
cout.tie(NULL); \
}
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<pii> vpi;
typedef vector<pll> vpl;
const int MAX_N = 1e5 + 5;
const ll MOD = 1e9 + 7;
const ll INF = 1e9;
const ld EPS = 1e-9;
void solve()
{
string s;
cin >> s;
if (s[0] == s[sz(s) - 1])
{
cout << s << endl;
}
else
{
s[sz(s) - 1] = s[0];
cout << s << endl;
}
}
int main()
{
Muichiro Tokito
#ifdef BERLIN
freopen("input.txt", "r", stdin);
freopen("error.txt", "w", stderr);
freopen("output.txt", "w", stdout);
#endif
int _;
cin >> _;
while (_--)
solve();
return 0;
}