This commit is contained in:
ShazidMahsrafi 2024-02-09 23:46:11 +06:00
parent f2f336aa51
commit 256608ac73
2 changed files with 276 additions and 195 deletions

View File

@ -0,0 +1,80 @@
#include<bits/stdc++.h>
using namespace std;
#define FAST_IO (ios_base:: sync_with_stdio(false),cin.tie(NULL));
#define int long long
#define ll long long
#define ull unsigned long long
#define endl '\n'
#define ff first
#define ss second
#define pb push_back
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
#define yes cout<<"YES"<<endl
#define no cout<<"NO"<<endl
#define neg1 cout<<-1<<endl
#define PI 3.141592653589793238
#define MIN INT_MIN
#define MAX INT_MAX
#define INF LONG_LONG_MAX
#define MOD 1000000007
#define LLM 1000000000000000007
ll factorial(ll n) { if(n==0) return 1; ll res = 1; for (ll i = 2; i <= n; i++) res = res * i; return res; }
ll nPr(ll n, ll r) { return factorial(n) / factorial(n - r); }
ll nCr(ll n, ll r) { return factorial(n) / (factorial(r) * factorial(n - r));}
ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); }
ll lcm(ll a, ll b) { return (a * b) / gcd(a, b);}
ull mypow(ull a, ull b) { ull ans = 1; a%=MOD; while(b){ if (b&1) ans = (ans*a) % MOD; a = (a*a) % MOD; b >>= 1; } return ans; }
bool isPrime(ll n) { if(n <= 1) return false; for(ll i = 2; i*i <= n; i++) if(n % i == 0) return false; return true; }
#ifndef ONLINE_JUDGE
#define dbg(x) cerr << #x <<" "; _print(x); cerr << endl;
#define dbgin(x) cerr << #x <<" "; _print(x); cerr << ";"<<endl;
#else
#define dbg(x)
#define dbgin(x)
#endif
void _print(int t) {cerr << t;}void _print(string t) {cerr << t;}void _print(char t) {cerr << t;}
void _print(long double t) {cerr << t;}void _print(double t) {cerr << t;}void _print(unsigned ll t) {cerr << t;}
template <class T, class V> void _print(pair <T, V> p);
template <class T> void _print(vector <T> v);template <class T> void _print(set <T> v);
template <class T, class V> void _print(map <T, V> v);template <class T> void _print(multiset <T> v);
template <class T, class V> void _print(pair <T, V> p) {cerr << "{"; _print(p.first); cerr << ","; _print(p.second); cerr << "}";}
template <class T> void _print(vector <T> v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";}
template <class T> void _print(set <T> v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";}
template <class T> void _print(multiset <T> v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";}
template <class T> void _print(unordered_set <T> v) {cerr<<"[ "; for(T i : v) {_print(i); cerr<<" ";} cerr<<"]";}
template <class T, class V> void _print(map <T, V> v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";}
template <class T, class V> void _print(multimap <T, V> v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";}
template <class T, class V> void _print(unordered_map <T, V> v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void solve()
{
string s;
cin>>s;
for(int i=0; i<sz(s); ++i)
{
int x=s[i]-'0';
if(i==0 && x==9)
continue;
if(x>=5)
s[i]='9'-x;
}
cout<<s<<endl;
}
int32_t main()
{
FAST_IO;
int TC = 1;
//cin >> TC;
while (TC--)
solve();
}

391
Readme.md
View File

@ -71,206 +71,207 @@ This repository contains my solutions of Codeforces problems. They are in C++ la
| 59 | 492 A | Vanya and Cubes | [Question](https://codeforces.com/problemset/problem/492/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/492%20A%20-%20Vanya%20and%20Cubes) | 59 | 492 A | Vanya and Cubes | [Question](https://codeforces.com/problemset/problem/492/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/492%20A%20-%20Vanya%20and%20Cubes)
| 60 | 492 B | Vanya and Lanterns | [Question](https://codeforces.com/problemset/problem/492/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/492%20B%20-%20Vanya%20and%20Lanterns) | 60 | 492 B | Vanya and Lanterns | [Question](https://codeforces.com/problemset/problem/492/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/492%20B%20-%20Vanya%20and%20Lanterns)
| 61 | 510 A | Fox And Snake | [Question](https://codeforces.com/problemset/problem/510/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/510%20A%20-%20Fox%20And%20Snake) | 61 | 510 A | Fox And Snake | [Question](https://codeforces.com/problemset/problem/510/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/510%20A%20-%20Fox%20And%20Snake)
| 62 | 525 A | Vitaliy and Pie | [Question](https://codeforces.com/problemset/problem/525/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/525%20A%20-%20Vitaliy%20and%20Pie) | 62 | 514 A | Chewbaсca and Number | [Question](https://codeforces.com/problemset/problem/514/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/514%20A%20-%20Chewbaсca%20and%20Number)
| 63 | 546 A | Soldier and Bananas | [Question](https://codeforces.com/problemset/problem/546/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/546%20A%20-%20Soldier%20and%20Bananas) | 63 | 525 A | Vitaliy and Pie | [Question](https://codeforces.com/problemset/problem/525/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/525%20A%20-%20Vitaliy%20and%20Pie)
| 64 | 584 A | Olesya and Rodion | [Question](https://codeforces.com/problemset/problem/584/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/584%20A%20-%20Olesya%20and%20Rodion) | 64 | 546 A | Soldier and Bananas | [Question](https://codeforces.com/problemset/problem/546/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/546%20A%20-%20Soldier%20and%20Bananas)
| 65 | 599 A | Patrick and Shopping | [Question](https://codeforces.com/problemset/problem/599/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/599%20A%20-%20Patrick%20and%20Shopping) | 65 | 584 A | Olesya and Rodion | [Question](https://codeforces.com/problemset/problem/584/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/584%20A%20-%20Olesya%20and%20Rodion)
| 66 | 617 A | Elephant | [Question](https://codeforces.com/problemset/problem/617/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/617%20A%20-%20Elephant) | 66 | 599 A | Patrick and Shopping | [Question](https://codeforces.com/problemset/problem/599/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/599%20A%20-%20Patrick%20and%20Shopping)
| 67 | 630 A | Again Twenty Five! | [Question](https://codeforces.com/problemset/problem/630/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/630%20A%20-%20Again%20Twenty%20Five!) | 67 | 617 A | Elephant | [Question](https://codeforces.com/problemset/problem/617/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/617%20A%20-%20Elephant)
| 68 | 677 A | Vanya and Fence | [Question](https://codeforces.com/problemset/problem/677/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/677%20A%20-%20Vanya%20and%20Fence) | 68 | 630 A | Again Twenty Five! | [Question](https://codeforces.com/problemset/problem/630/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/630%20A%20-%20Again%20Twenty%20Five!)
| 69 | 705 A | Hulk | [Question](https://codeforces.com/problemset/problem/705/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/705%20A%20-%20Hulk) | 69 | 677 A | Vanya and Fence | [Question](https://codeforces.com/problemset/problem/677/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/677%20A%20-%20Vanya%20and%20Fence)
| 70 | 706 B | Interesting drink | [Question](https://codeforces.com/problemset/problem/706/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/706%20B%20-%20Interesting%20drink) | 70 | 705 A | Hulk | [Question](https://codeforces.com/problemset/problem/705/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/705%20A%20-%20Hulk)
| 71 | 734 A | Anton and Danik | [Question](https://codeforces.com/problemset/problem/734/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/734%20A%20-%20Anton%20and%20Danik) | 71 | 706 B | Interesting drink | [Question](https://codeforces.com/problemset/problem/706/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/706%20B%20-%20Interesting%20drink)
| 72 | 742 A | Arpas hard exam and Mehrdads naive cheat | [Question](https://codeforces.com/problemset/problem/742/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/742%20A%20-%20Arpas%20hard%20exam%20and%20Mehrdads%20naive%20cheat) | 72 | 734 A | Anton and Danik | [Question](https://codeforces.com/problemset/problem/734/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/734%20A%20-%20Anton%20and%20Danik)
| 73 | 791 A | Bear And Big Brother | [Question](https://codeforces.com/problemset/problem/791/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/791%20A%20-%20Bear%20And%20Big%20Brother) | 73 | 742 A | Arpas hard exam and Mehrdads naive cheat | [Question](https://codeforces.com/problemset/problem/742/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/742%20A%20-%20Arpas%20hard%20exam%20and%20Mehrdads%20naive%20cheat)
| 74 | 854 A | Fraction | [Question](https://codeforces.com/problemset/problem/854/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/854%20A%20-%20Fraction) | 74 | 791 A | Bear And Big Brother | [Question](https://codeforces.com/problemset/problem/791/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/791%20A%20-%20Bear%20And%20Big%20Brother)
| 75 | 855 A | Tom Riddle's Diary | [Question](https://codeforces.com/problemset/problem/855/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/855%20A%20-%20Tom%20Riddle's%20Diary) | 75 | 854 A | Fraction | [Question](https://codeforces.com/problemset/problem/854/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/854%20A%20-%20Fraction)
| 76 | 977 A | Wrong Substraction | [Question](https://codeforces.com/problemset/problem/977/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/977%20A%20-%20Wrong%20Substraction) | 76 | 855 A | Tom Riddle's Diary | [Question](https://codeforces.com/problemset/problem/855/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/855%20A%20-%20Tom%20Riddle's%20Diary)
| 77 | 1068 A | Birthday | [Question](https://codeforces.com/problemset/problem/1068/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1068%20A%20-%20Birthday) | 77 | 977 A | Wrong Substraction | [Question](https://codeforces.com/problemset/problem/977/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/977%20A%20-%20Wrong%20Substraction)
| 78 | 1076 C | Meme Problem | [Question](https://codeforces.com/problemset/problem/1076/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1076%20C%20-%20Meme%20Problem) | 78 | 1068 A | Birthday | [Question](https://codeforces.com/problemset/problem/1068/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1068%20A%20-%20Birthday)
| 79 | 1088 A | Ehab and another construction problem | [Question](https://codeforces.com/problemset/problem/1088/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1088%20A%20-%20Ehab%20and%20another%20construction%20problem) | 79 | 1076 C | Meme Problem | [Question](https://codeforces.com/problemset/problem/1076/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1076%20C%20-%20Meme%20Problem)
| 80 | 1118 B | Tanya and Candies | [Question](https://codeforces.com/problemset/problem/1118/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1118%20B%20-%20Tanya%20and%20Candies) | 80 | 1088 A | Ehab and another construction problem | [Question](https://codeforces.com/problemset/problem/1088/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1088%20A%20-%20Ehab%20and%20another%20construction%20problem)
| 81 | 1144 C | Two Shuffled Sequences | [Question](https://codeforces.com/problemset/problem/1144/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1144%20C%20-%20Two%20Shuffled%20Sequences) | 81 | 1118 B | Tanya and Candies | [Question](https://codeforces.com/problemset/problem/1118/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1118%20B%20-%20Tanya%20and%20Candies)
| 82 | 1196 A | Three Piles of Candies | [Question](https://codeforces.com/problemset/problem/1196/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1196%20A%20-%20Three%20Piles%20of%20Candies) | 82 | 1144 C | Two Shuffled Sequences | [Question](https://codeforces.com/problemset/problem/1144/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1144%20C%20-%20Two%20Shuffled%20Sequences)
| 83 | 1295 A | Display The Number | [Question](https://codeforces.com/problemset/problem/1295/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1295%20A%20-%20Display%20The%20Number) | 83 | 1196 A | Three Piles of Candies | [Question](https://codeforces.com/problemset/problem/1196/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1196%20A%20-%20Three%20Piles%20of%20Candies)
| 84 | 1296 A | Array with Odd Sum | [Question](https://codeforces.com/problemset/problem/1296/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1296%20A%20-%20Array%20with%20Odd%20Sum) | 84 | 1295 A | Display The Number | [Question](https://codeforces.com/problemset/problem/1295/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1295%20A%20-%20Display%20The%20Number)
| 85 | 1311 A | Add Odd or Subtract Even | [Question](https://codeforces.com/problemset/problem/1311/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1311%20A%20-%20Add%20Odd%20or%20Subtract%20Even) | 85 | 1296 A | Array with Odd Sum | [Question](https://codeforces.com/problemset/problem/1296/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1296%20A%20-%20Array%20with%20Odd%20Sum)
| 86 | 1328 A | Divisibility Problem | [Question](https://codeforces.com/problemset/problem/1328/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1328%20A%20-%20Divisibility%20Problem) | 86 | 1311 A | Add Odd or Subtract Even | [Question](https://codeforces.com/problemset/problem/1311/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1311%20A%20-%20Add%20Odd%20or%20Subtract%20Even)
| 87 | 1341 A | Nastya and Rice | [Question](https://codeforces.com/problemset/problem/1341/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1341%20A%20-%20Nastya%20and%20Rice) | 87 | 1328 A | Divisibility Problem | [Question](https://codeforces.com/problemset/problem/1328/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1328%20A%20-%20Divisibility%20Problem)
| 88 | 1343 B | Balanced Array | [Question](https://codeforces.com/problemset/problem/1343/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1343%20B%20-%20Balanced%20Array) | 88 | 1341 A | Nastya and Rice | [Question](https://codeforces.com/problemset/problem/1341/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1341%20A%20-%20Nastya%20and%20Rice)
| 89 | 1352 C | K-th Not Divisible by n | [Question](https://codeforces.com/problemset/problem/1352/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1352%20C%20-%20K-th%20Not%20Divisible%20by%20n) | 89 | 1343 B | Balanced Array | [Question](https://codeforces.com/problemset/problem/1343/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1343%20B%20-%20Balanced%20Array)
| 90 | 1360 B | Honest Coach | [Question](https://codeforces.com/problemset/problem/1360/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1360%20B%20-%20Honest%20Coach) | 90 | 1352 C | K-th Not Divisible by n | [Question](https://codeforces.com/problemset/problem/1352/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1352%20C%20-%20K-th%20Not%20Divisible%20by%20n)
| 91 | 1364 A | XXXXX | [Question](https://codeforces.com/problemset/problem/1364/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1364%20A%20-%20XXXXX) | 91 | 1360 B | Honest Coach | [Question](https://codeforces.com/problemset/problem/1360/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1360%20B%20-%20Honest%20Coach)
| 92 | 1367 B | Even Array | [Question](https://codeforces.com/problemset/problem/1367/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1367%20B%20-%20%20Even%20Array) | 92 | 1364 A | XXXXX | [Question](https://codeforces.com/problemset/problem/1364/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1364%20A%20-%20XXXXX)
| 93 | 1389 A | LCM Problem | [Question](https://codeforces.com/problemset/problem/1389/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1389%20A%20-%20LCM%20Problem) | 93 | 1367 B | Even Array | [Question](https://codeforces.com/problemset/problem/1367/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1367%20B%20-%20%20Even%20Array)
| 94 | 1399 A | Remove Smallest | [Question](https://codeforces.com/problemset/problem/1399/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1399%20A%20-%20Remove%20Smallest) | 94 | 1389 A | LCM Problem | [Question](https://codeforces.com/problemset/problem/1389/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1389%20A%20-%20LCM%20Problem)
| 95 | 1426 A | Floor Number | [Question](https://codeforces.com/problemset/problem/1426/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1426%20A%20-%20Floor%20Number) | 95 | 1399 A | Remove Smallest | [Question](https://codeforces.com/problemset/problem/1399/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1399%20A%20-%20Remove%20Smallest)
| 96 | 1512 A | Spy Detected! | [Question](https://codeforces.com/problemset/problem/1512/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1512%20A%20-%20Spy%20Detected!) | 96 | 1426 A | Floor Number | [Question](https://codeforces.com/problemset/problem/1426/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1426%20A%20-%20Floor%20Number)
| 97 | 1582 B | Luntik and Subsequences | [Question](https://codeforces.com/problemset/problem/1582/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1582%20B%20-%20Luntik%20and%20Subsequences) | 97 | 1512 A | Spy Detected! | [Question](https://codeforces.com/problemset/problem/1512/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1512%20A%20-%20Spy%20Detected!)
| 98 | 1624 B | Make AP | [Question](https://codeforces.com/problemset/problem/1624/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1624%20B%20-%20Make%20AP) | 98 | 1582 B | Luntik and Subsequences | [Question](https://codeforces.com/problemset/problem/1582/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1582%20B%20-%20Luntik%20and%20Subsequences)
| 99 | 1633 A | Div. 7 | [Question](https://codeforces.com/problemset/problem/1633/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1633%20A%20-%20Div.%207) | 99 | 1624 B | Make AP | [Question](https://codeforces.com/problemset/problem/1624/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1624%20B%20-%20Make%20AP)
| 100 | 1676 A | Lucky | [Question](https://codeforces.com/problemset/problem/1676/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1676%20A%20-%20Lucky) | 100 | 1633 A | Div. 7 | [Question](https://codeforces.com/problemset/problem/1633/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1633%20A%20-%20Div.%207)
| 101 | 1692 A | Marathon | [Question](https://codeforces.com/problemset/problem/1692/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1692%20A%20-%20Marathon) | 101 | 1676 A | Lucky | [Question](https://codeforces.com/problemset/problem/1676/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1676%20A%20-%20Lucky)
| 102 | 1703 A | YES or YES | [Question](https://codeforces.com/problemset/problem/1703/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1703%20A%20-%20YES%20or%20YES) | 102 | 1692 A | Marathon | [Question](https://codeforces.com/problemset/problem/1692/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1692%20A%20-%20Marathon)
| 103 | 1719 A | Chip Game | [Question](https://codeforces.com/problemset/problem/1719/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1719%20A%20-%20Chip%20Game) | 103 | 1703 A | YES or YES | [Question](https://codeforces.com/problemset/problem/1703/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1703%20A%20-%20YES%20or%20YES)
| 104 | 1719 B | Mathematical Circus | [Question](https://codeforces.com/problemset/problem/1719/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1719%20B%20-%20Mathematical%20Circus) | 104 | 1719 A | Chip Game | [Question](https://codeforces.com/problemset/problem/1719/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1719%20A%20-%20Chip%20Game)
| 105 | 1721 B | Deadly Laser | [Question](https://codeforces.com/problemset/problem/1721/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1721%20B%20-%20Deadly%20Laser) | 105 | 1719 B | Mathematical Circus | [Question](https://codeforces.com/problemset/problem/1719/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1719%20B%20-%20Mathematical%20Circus)
| 106 | 1742 A | Sum | [Question](https://codeforces.com/problemset/problem/1742/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1742%20A%20-%20Sum) | 106 | 1721 B | Deadly Laser | [Question](https://codeforces.com/problemset/problem/1721/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1721%20B%20-%20Deadly%20Laser)
| 107 | 1742 C | Stripes | [Question](https://codeforces.com/problemset/problem/1742/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1742%20C%20-%20Stripes) | 107 | 1742 A | Sum | [Question](https://codeforces.com/problemset/problem/1742/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1742%20A%20-%20Sum)
| 108 | 1746 B | Rebellion | [Question](https://codeforces.com/problemset/problem/1746/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1746%20B%20-%20Rebellion) | 108 | 1742 C | Stripes | [Question](https://codeforces.com/problemset/problem/1742/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1742%20C%20-%20Stripes)
| 109 | 1748 A | The Ultimate Square | [Question](https://codeforces.com/problemset/problem/1748/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1748%20A%20-%20The%20Ultimate%20Square) | 109 | 1746 B | Rebellion | [Question](https://codeforces.com/problemset/problem/1746/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1746%20B%20-%20Rebellion)
| 110 | 1758 B | XOR = Average | [Question](https://codeforces.com/problemset/problem/1758/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1758%20B%20-%20XOR%20=%20Average) | 110 | 1748 A | The Ultimate Square | [Question](https://codeforces.com/problemset/problem/1748/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1748%20A%20-%20The%20Ultimate%20Square)
| 111 | 1760 A | Medium Number | [Question](https://codeforces.com/problemset/problem/1760/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1760%20A%20-%20Medium%20Number) | 111 | 1758 B | XOR = Average | [Question](https://codeforces.com/problemset/problem/1758/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1758%20B%20-%20XOR%20=%20Average)
| 112 | 1761 A | Two Permutations | [Question](https://codeforces.com/problemset/problem/1761/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1761%20A%20-%20Two%20Permutations) | 112 | 1760 A | Medium Number | [Question](https://codeforces.com/problemset/problem/1760/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1760%20A%20-%20Medium%20Number)
| 113 | 1766 A | Extremely Round | [Question](https://codeforces.com/problemset/problem/1766/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1766%20A%20-%20Extremely%20Round) | 113 | 1761 A | Two Permutations | [Question](https://codeforces.com/problemset/problem/1761/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1761%20A%20-%20Two%20Permutations)
| 114 | 1773 F | Football | [Question](https://codeforces.com/problemset/problem/1773/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1773%20F%20-%20Football) | 114 | 1766 A | Extremely Round | [Question](https://codeforces.com/problemset/problem/1766/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1766%20A%20-%20Extremely%20Round)
| 115 | 1777 A | Everybody Likes Good Arrays! | [Question](https://codeforces.com/problemset/problem/1777/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1777%20A%20-%20Everybody%20Likes%20Good%20Arrays!) | 115 | 1773 F | Football | [Question](https://codeforces.com/problemset/problem/1773/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1773%20F%20-%20Football)
| 116 | 1783 A | Make it Beautiful | [Question](https://codeforces.com/problemset/problem/1783/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1783%20A%20-%20Make%20it%20Beautiful) | 116 | 1777 A | Everybody Likes Good Arrays! | [Question](https://codeforces.com/problemset/problem/1777/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1777%20A%20-%20Everybody%20Likes%20Good%20Arrays!)
| 117 | 1788 A | One and Two | [Question](https://codeforces.com/problemset/problem/1788/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1788%20A%20-%20One%20and%20Two) | 117 | 1783 A | Make it Beautiful | [Question](https://codeforces.com/problemset/problem/1783/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1783%20A%20-%20Make%20it%20Beautiful)
| 118 | 1789 A | Serval and Mocha's Array | [Question](https://codeforces.com/problemset/problem/1789/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1789%20A%20-%20Serval%20and%20Mocha's%20Array) | 118 | 1788 A | One and Two | [Question](https://codeforces.com/problemset/problem/1788/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1788%20A%20-%20One%20and%20Two)
| 119 | 1791 B | Following Directions | [Question](https://codeforces.com/problemset/problem/1791/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1791%20B%20-%20Following%20Directions) | 119 | 1789 A | Serval and Mocha's Array | [Question](https://codeforces.com/problemset/problem/1789/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1789%20A%20-%20Serval%20and%20Mocha's%20Array)
| 120 | 1791 C | Prepend and Append | [Question](https://codeforces.com/problemset/problem/1791/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1791%20C%20-%20Prepend%20and%20Append) | 120 | 1791 B | Following Directions | [Question](https://codeforces.com/problemset/problem/1791/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1791%20B%20-%20Following%20Directions)
| 121 | 1792 A | Gaming Forces | [Question](https://codeforces.com/problemset/problem/1792/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1792%20A%20-%20Gaming%20Forces) | 121 | 1791 C | Prepend and Append | [Question](https://codeforces.com/problemset/problem/1791/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1791%20C%20-%20Prepend%20and%20Append)
| 122 | 1795 B | Ideal Point | [Question](https://codeforces.com/problemset/problem/1795/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1795%20B%20-%20Ideal%20Point) | 122 | 1792 A | Gaming Forces | [Question](https://codeforces.com/problemset/problem/1792/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1792%20A%20-%20Gaming%20Forces)
| 123 | 1800 A | Is It a Cat | [Question](https://codeforces.com/problemset/problem/1800/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1800%20A%20-%20Is%20It%20a%20Cat) | 123 | 1795 B | Ideal Point | [Question](https://codeforces.com/problemset/problem/1795/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1795%20B%20-%20Ideal%20Point)
| 124 | 1805 A | We Need the Zero | [Question](https://codeforces.com/problemset/problem/1805/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1805%20A%20-%20We%20Need%20the%20Zero) | 124 | 1800 A | Is It a Cat | [Question](https://codeforces.com/problemset/problem/1800/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1800%20A%20-%20Is%20It%20a%20Cat)
| 125 | 1806 A | Walking Master | [Question](https://codeforces.com/problemset/problem/1806/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1806%20A%20-%20Walking%20Master) | 125 | 1805 A | We Need the Zero | [Question](https://codeforces.com/problemset/problem/1805/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1805%20A%20-%20We%20Need%20the%20Zero)
| 126 | 1811 A | Insert Digit | [Question](https://codeforces.com/problemset/problem/1811/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1811%20A%20-%20Insert%20Digit) | 126 | 1806 A | Walking Master | [Question](https://codeforces.com/problemset/problem/1806/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1806%20A%20-%20Walking%20Master)
| 127 | 1814 A | Coins | [Question](https://codeforces.com/problemset/problem/1814/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1814%20A%20-%20Coins) | 127 | 1811 A | Insert Digit | [Question](https://codeforces.com/problemset/problem/1811/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1811%20A%20-%20Insert%20Digit)
| 128 | 1818 B | Indivisible | [Question](https://codeforces.com/problemset/problem/1818/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1818%20B%20-%20Indivisible) | 128 | 1814 A | Coins | [Question](https://codeforces.com/problemset/problem/1814/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1814%20A%20-%20Coins)
| 129 | 1822 A | TubeTube Feed | [Question](https://codeforces.com/problemset/problem/1822/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1822%20A%20-%20TubeTube%20Feed) | 129 | 1818 B | Indivisible | [Question](https://codeforces.com/problemset/problem/1818/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1818%20B%20-%20Indivisible)
| 130 | 1822 C | Bun Lover | [Question](https://codeforces.com/problemset/problem/1822/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1822%20C%20-%20Bun%20Lover) | 130 | 1822 A | TubeTube Feed | [Question](https://codeforces.com/problemset/problem/1822/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1822%20A%20-%20TubeTube%20Feed)
| 131 | 1828 A | Divisible Array | [Question](https://codeforces.com/problemset/problem/1828/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1828%20A%20-%20Divisible%20Array) | 131 | 1822 C | Bun Lover | [Question](https://codeforces.com/problemset/problem/1822/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1822%20C%20-%20Bun%20Lover)
| 132 | 1828 B | Permutation Swap | [Question](https://codeforces.com/problemset/problem/1828/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1828%20B%20-%20Permutation%20Swap) | 132 | 1828 A | Divisible Array | [Question](https://codeforces.com/problemset/problem/1828/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1828%20A%20-%20Divisible%20Array)
| 133 | 1829 A | Love Story | [Question](https://codeforces.com/problemset/problem/1829/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1829%20A%20-%20Love%20Story) | 133 | 1828 B | Permutation Swap | [Question](https://codeforces.com/problemset/problem/1828/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1828%20B%20-%20Permutation%20Swap)
| 134 | 1829 B | Blank Spaces | [Question](https://codeforces.com/problemset/problem/1829/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1829%20B%20-%20Blank%20Spaces) | 134 | 1829 A | Love Story | [Question](https://codeforces.com/problemset/problem/1829/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1829%20A%20-%20Love%20Story)
| 135 | 1829 C | Mr. Perfectly Fine | [Question](https://codeforces.com/problemset/problem/1829/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1829%20C%20-%20Mr.%20Perfectly%20Fine) | 135 | 1829 B | Blank Spaces | [Question](https://codeforces.com/problemset/problem/1829/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1829%20B%20-%20Blank%20Spaces)
| 136 | 1829 D | Gold Rush | [Question](https://codeforces.com/problemset/problem/1829/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1829%20D%20-%20Gold%20Rush) | 136 | 1829 C | Mr. Perfectly Fine | [Question](https://codeforces.com/problemset/problem/1829/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1829%20C%20-%20Mr.%20Perfectly%20Fine)
| 137 | 1831 A | Twin Permutations | [Question](https://codeforces.com/problemset/problem/1831/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1831%20A%20-%20Twin%20Permutations) | 137 | 1829 D | Gold Rush | [Question](https://codeforces.com/problemset/problem/1829/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1829%20D%20-%20Gold%20Rush)
| 138 | 1832 A | New Palindrome | [Question](https://codeforces.com/problemset/problem/1832/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1832%20A%20-%20New%20Palindrome) | 138 | 1831 A | Twin Permutations | [Question](https://codeforces.com/problemset/problem/1831/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1831%20A%20-%20Twin%20Permutations)
| 139 | 1833 A | Musical Puzzle | [Question](https://codeforces.com/problemset/problem/1833/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1833%20A%20-%20Musical%20Puzzle) | 139 | 1832 A | New Palindrome | [Question](https://codeforces.com/problemset/problem/1832/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1832%20A%20-%20New%20Palindrome)
| 140 | 1833 B | Restore the Weather | [Question](https://codeforces.com/problemset/problem/1833/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1833%20B%20-%20Restore%20the%20Weather) | 140 | 1833 A | Musical Puzzle | [Question](https://codeforces.com/problemset/problem/1833/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1833%20A%20-%20Musical%20Puzzle)
| 141 | 1833 C | Vlad Building Beautiful Array | [Question](https://codeforces.com/problemset/problem/1833/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1833%20C%20-%20Vlad%20Building%20Beautiful%20Array) | 141 | 1833 B | Restore the Weather | [Question](https://codeforces.com/problemset/problem/1833/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1833%20B%20-%20Restore%20the%20Weather)
| 142 | 1834 A | Unit Array | [Question](https://codeforces.com/problemset/problem/1834/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1834%20A%20-%20Unit%20Array) | 142 | 1833 C | Vlad Building Beautiful Array | [Question](https://codeforces.com/problemset/problem/1833/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1833%20C%20-%20Vlad%20Building%20Beautiful%20Array)
| 143 | 1837 A | Grasshopper on a Line | [Question](https://codeforces.com/problemset/problem/1837/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1837%20A%20-%20Grasshopper%20on%20a%20Line) | 143 | 1834 A | Unit Array | [Question](https://codeforces.com/problemset/problem/1834/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1834%20A%20-%20Unit%20Array)
| 144 | 1837 B | Comparison String | [Question](https://codeforces.com/problemset/problem/1837/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1837%20B%20-%20Comparison%20String) | 144 | 1837 A | Grasshopper on a Line | [Question](https://codeforces.com/problemset/problem/1837/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1837%20A%20-%20Grasshopper%20on%20a%20Line)
| 145 | 1841 B | Keep it Beautiful | [Question](https://codeforces.com/problemset/problem/1841/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1841%20B%20-%20Keep%20it%20Beautiful) | 145 | 1837 B | Comparison String | [Question](https://codeforces.com/problemset/problem/1837/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1837%20B%20-%20Comparison%20String)
| 146 | 1843 A | Sasha and Array Coloring | [Question](https://codeforces.com/problemset/problem/1843/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1843%20A%20-%20Sasha%20and%20Array%20Coloring) | 146 | 1841 B | Keep it Beautiful | [Question](https://codeforces.com/problemset/problem/1841/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1841%20B%20-%20Keep%20it%20Beautiful)
| 147 | 1843 B | Long Long | [Question](https://codeforces.com/problemset/problem/1843/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1843%20B%20-%20Long%20Long) | 147 | 1843 A | Sasha and Array Coloring | [Question](https://codeforces.com/problemset/problem/1843/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1843%20A%20-%20Sasha%20and%20Array%20Coloring)
| 148 | 1844 A | Subtraction Game | [Question](https://codeforces.com/problemset/problem/1844/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1844%20A%20-%20Subtraction%20Game) | 148 | 1843 B | Long Long | [Question](https://codeforces.com/problemset/problem/1843/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1843%20B%20-%20Long%20Long)
| 149 | 1845 A | Forbidden Integer | [Question](https://codeforces.com/problemset/problem/1845/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1845%20A%20-%20Forbidden%20Integer) | 149 | 1844 A | Subtraction Game | [Question](https://codeforces.com/problemset/problem/1844/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1844%20A%20-%20Subtraction%20Game)
| 150 | 1846 A | Rudolph and Cut the Rope | [Question](https://codeforces.com/problemset/problem/1846/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1846%20A%20-%20Rudolph%20and%20Cut%20the%20Rope) | 150 | 1845 A | Forbidden Integer | [Question](https://codeforces.com/problemset/problem/1845/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1845%20A%20-%20Forbidden%20Integer)
| 151 | 1846 B | Rudolph and Tic-Tac-Toe | [Question](https://codeforces.com/problemset/problem/1846/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1846%20B%20-%20Rudolph%20and%20Tic-Tac-Toe) | 151 | 1846 A | Rudolph and Cut the Rope | [Question](https://codeforces.com/problemset/problem/1846/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1846%20A%20-%20Rudolph%20and%20Cut%20the%20Rope)
| 152 | 1846 C | Rudolf and the Another Competition | [Question](https://codeforces.com/problemset/problem/1846/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1846%20C%20-%20Rudolf%20and%20the%20Another%20Competition) | 152 | 1846 B | Rudolph and Tic-Tac-Toe | [Question](https://codeforces.com/problemset/problem/1846/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1846%20B%20-%20Rudolph%20and%20Tic-Tac-Toe)
| 153 | 1848 A | Vika and Her Friends | [Question](https://codeforces.com/problemset/problem/1848/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1848%20A%20-%20Vika%20and%20Her%20Friends) | 153 | 1846 C | Rudolf and the Another Competition | [Question](https://codeforces.com/problemset/problem/1846/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1846%20C%20-%20Rudolf%20and%20the%20Another%20Competition)
| 154 | 1849 A | Morning Sandwich | [Question](https://codeforces.com/problemset/problem/1849/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1849%20A%20-%20Morning%20Sandwich) | 154 | 1848 A | Vika and Her Friends | [Question](https://codeforces.com/problemset/problem/1848/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1848%20A%20-%20Vika%20and%20Her%20Friends)
| 155 | 1849 B | Monsters | [Question](https://codeforces.com/problemset/problem/1849/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1849%20B%20-%20Monsters) | 155 | 1849 A | Morning Sandwich | [Question](https://codeforces.com/problemset/problem/1849/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1849%20A%20-%20Morning%20Sandwich)
| 156 | 1850 A | To My Critics | [Question](https://codeforces.com/problemset/problem/1850/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1850%20A%20-%20To%20My%20Critics) | 156 | 1849 B | Monsters | [Question](https://codeforces.com/problemset/problem/1849/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1849%20B%20-%20Monsters)
| 157 | 1850 B | Ten Words of Wisdom | [Question](https://codeforces.com/problemset/problem/1850/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1850%20B%20-%20Ten%20Words%20of%20Wisdom) | 157 | 1850 A | To My Critics | [Question](https://codeforces.com/problemset/problem/1850/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1850%20A%20-%20To%20My%20Critics)
| 158 | 1850 C | Word on the Paper | [Question](https://codeforces.com/problemset/problem/1850/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1850%20C%20-%20Word%20on%20the%20Paper) | 158 | 1850 B | Ten Words of Wisdom | [Question](https://codeforces.com/problemset/problem/1850/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1850%20B%20-%20Ten%20Words%20of%20Wisdom)
| 159 | 1850 D | Balanced Round | [Question](https://codeforces.com/problemset/problem/1850/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1850%20D%20-%20Balanced%20Round) | 159 | 1850 C | Word on the Paper | [Question](https://codeforces.com/problemset/problem/1850/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1850%20C%20-%20Word%20on%20the%20Paper)
| 160 | 1851 A | Escalator Conversations | [Question](https://codeforces.com/problemset/problem/1851/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1851%20A%20-%20Escalator%20Conversations) | 160 | 1850 D | Balanced Round | [Question](https://codeforces.com/problemset/problem/1850/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1850%20D%20-%20Balanced%20Round)
| 161 | 1851 B | Parity Sort | [Question](https://codeforces.com/problemset/problem/1851/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1851%20B%20-%20Parity%20Sort) | 161 | 1851 A | Escalator Conversations | [Question](https://codeforces.com/problemset/problem/1851/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1851%20A%20-%20Escalator%20Conversations)
| 162 | 1851 C | Tiles Comeback | [Question](https://codeforces.com/problemset/problem/1851/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1851%20C%20-%20Tiles%20Comeback) | 162 | 1851 B | Parity Sort | [Question](https://codeforces.com/problemset/problem/1851/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1851%20B%20-%20Parity%20Sort)
| 163 | 1853 A | Desorting | [Question](https://codeforces.com/problemset/problem/1853/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1853%20A%20-%20Desorting) | 163 | 1851 C | Tiles Comeback | [Question](https://codeforces.com/problemset/problem/1851/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1851%20C%20-%20Tiles%20Comeback)
| 164 | 1855 A | Dalton the Teacher | [Question](https://codeforces.com/problemset/problem/1855/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1855%20A%20-%20Dalton%20the%20Teacher) | 164 | 1853 A | Desorting | [Question](https://codeforces.com/problemset/problem/1853/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1853%20A%20-%20Desorting)
| 165 | 1855 B | Longest Divisors Interval | [Question](https://codeforces.com/problemset/problem/1855/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1855%20B%20-%20Longest%20Divisors%20Interval) | 165 | 1855 A | Dalton the Teacher | [Question](https://codeforces.com/problemset/problem/1855/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1855%20A%20-%20Dalton%20the%20Teacher)
| 166 | 1856 B | Good Arrays | [Question](https://codeforces.com/problemset/problem/1856/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1856%20B%20-%20Good%20Arrays) | 166 | 1855 B | Longest Divisors Interval | [Question](https://codeforces.com/problemset/problem/1855/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1855%20B%20-%20Longest%20Divisors%20Interval)
| 167 | 1857 A | Array Coloring | [Question](https://codeforces.com/problemset/problem/1857/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1857%20A%20-%20%20Array%20Coloring) | 167 | 1856 B | Good Arrays | [Question](https://codeforces.com/problemset/problem/1856/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1856%20B%20-%20Good%20Arrays)
| 168 | 1857 B | Maximum Rounding | [Question](https://codeforces.com/problemset/problem/1857/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1857%20B%20-%20Maximum%20Rounding) | 168 | 1857 A | Array Coloring | [Question](https://codeforces.com/problemset/problem/1857/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1857%20A%20-%20%20Array%20Coloring)
| 169 | 1857 C | Assembly via Minimums | [Question](https://codeforces.com/problemset/problem/1857/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1857%20C%20-%20Assembly%20via%20Minimums) | 169 | 1857 B | Maximum Rounding | [Question](https://codeforces.com/problemset/problem/1857/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1857%20B%20-%20Maximum%20Rounding)
| 170 | 1858 A | Buttons | [Question](https://codeforces.com/problemset/problem/1858/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1858%20A%20-%20Buttons) | 170 | 1857 C | Assembly via Minimums | [Question](https://codeforces.com/problemset/problem/1857/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1857%20C%20-%20Assembly%20via%20Minimums)
| 171 | 1859 A | United We Stand | [Question](https://codeforces.com/problemset/problem/1859/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1859%20A%20-%20United%20We%20Stand) | 171 | 1858 A | Buttons | [Question](https://codeforces.com/problemset/problem/1858/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1858%20A%20-%20Buttons)
| 172 | 1860 A | Not a Substring | [Question](https://codeforces.com/problemset/problem/1860/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1860%20A%20-%20Not%20a%20Substring) | 172 | 1859 A | United We Stand | [Question](https://codeforces.com/problemset/problem/1859/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1859%20A%20-%20United%20We%20Stand)
| 173 | 1862 A | Gift Carpet | [Question](https://codeforces.com/problemset/problem/1862/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1862%20A%20-%20Gift%20Carpet) | 173 | 1860 A | Not a Substring | [Question](https://codeforces.com/problemset/problem/1860/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1860%20A%20-%20Not%20a%20Substring)
| 174 | 1862 B | Sequence Game | [Question](https://codeforces.com/problemset/problem/1862/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1862%20B%20-%20Sequence%20Game) | 174 | 1862 A | Gift Carpet | [Question](https://codeforces.com/problemset/problem/1862/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1862%20A%20-%20Gift%20Carpet)
| 175 | 1863 A | Channel | [Question](https://codeforces.com/problemset/problem/1863/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1863%20A%20-%20Channel) | 175 | 1862 B | Sequence Game | [Question](https://codeforces.com/problemset/problem/1862/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1862%20B%20-%20Sequence%20Game)
| 176 | 1864 A | Increasing and Decreasing | [Question](https://codeforces.com/problemset/problem/1864/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1864%20A%20-%20Increasing%20and%20Decreasing) | 176 | 1863 A | Channel | [Question](https://codeforces.com/problemset/problem/1863/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1863%20A%20-%20Channel)
| 177 | 1866 A | Ambitious Kid | [Question](https://codeforces.com/problemset/problem/1866/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1866%20A%20-%20Ambitious%20Kid) | 177 | 1864 A | Increasing and Decreasing | [Question](https://codeforces.com/problemset/problem/1864/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1864%20A%20-%20Increasing%20and%20Decreasing)
| 178 | 1869 A | Make It Zero | [Question](https://codeforces.com/problemset/problem/1869/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1869%20A%20-%20Make%20It%20Zero) | 178 | 1866 A | Ambitious Kid | [Question](https://codeforces.com/problemset/problem/1866/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1866%20A%20-%20Ambitious%20Kid)
| 179 | 1870 A | MEXanized Array | [Question](https://codeforces.com/problemset/problem/1870/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1870%20A%20-%20MEXanized%20Array) | 179 | 1869 A | Make It Zero | [Question](https://codeforces.com/problemset/problem/1869/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1869%20A%20-%20Make%20It%20Zero)
| 180 | 1872 A | Two Vessels | [Question](https://codeforces.com/problemset/problem/1872/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1872%20A%20-%20Two%20Vessels) | 180 | 1870 A | MEXanized Array | [Question](https://codeforces.com/problemset/problem/1870/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1870%20A%20-%20MEXanized%20Array)
| 181 | 1872 B | The Corridor or There and Back Again | [Question](https://codeforces.com/problemset/problem/1872/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1872%20B%20-%20The%20Corridor%20or%20There%20and%20Back%20Again) | 181 | 1872 A | Two Vessels | [Question](https://codeforces.com/problemset/problem/1872/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1872%20A%20-%20Two%20Vessels)
| 182 | 1872 C | Non-coprime Split | [Question](https://codeforces.com/problemset/problem/1872/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1872%20C%20-%20Non-coprime%20Split) | 182 | 1872 B | The Corridor or There and Back Again | [Question](https://codeforces.com/problemset/problem/1872/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1872%20B%20-%20The%20Corridor%20or%20There%20and%20Back%20Again)
| 183 | 1873 A | Short Sort | [Question](https://codeforces.com/problemset/problem/1873/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1873%20A%20-%20Short%20Sort) | 183 | 1872 C | Non-coprime Split | [Question](https://codeforces.com/problemset/problem/1872/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1872%20C%20-%20Non-coprime%20Split)
| 184 | 1873 B | Good Kid | [Question](https://codeforces.com/problemset/problem/1873/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1873%20B%20-%20Good%20Kid) | 184 | 1873 A | Short Sort | [Question](https://codeforces.com/problemset/problem/1873/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1873%20A%20-%20Short%20Sort)
| 185 | 1873 C | Target Practice | [Question](https://codeforces.com/problemset/problem/1873/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1873%20C%20-%20Target%20Practice) | 185 | 1873 B | Good Kid | [Question](https://codeforces.com/problemset/problem/1873/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1873%20B%20-%20Good%20Kid)
| 186 | 1873 D | 1D Eraser | [Question](https://codeforces.com/problemset/problem/1873/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1873%20D%20-%201D%20Eraser) | 186 | 1873 C | Target Practice | [Question](https://codeforces.com/problemset/problem/1873/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1873%20C%20-%20Target%20Practice)
| 187 | 1875 A | Jellyfish and Undertale | [Question](https://codeforces.com/problemset/problem/1875/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1875%20A%20-%20Jellyfish%20and%20Undertale) | 187 | 1873 D | 1D Eraser | [Question](https://codeforces.com/problemset/problem/1873/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1873%20D%20-%201D%20Eraser)
| 188 | 1877 A | Goals of Victory | [Question](https://codeforces.com/problemset/problem/1877/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1877%20A%20-%20Goals%20of%20Victory) | 188 | 1875 A | Jellyfish and Undertale | [Question](https://codeforces.com/problemset/problem/1875/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1875%20A%20-%20Jellyfish%20and%20Undertale)
| 189 | 1878 A | How Much Does Daytona Cost | [Question](https://codeforces.com/problemset/problem/1878/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1878%20A%20-%20How%20Much%20Does%20Daytona%20Cost) | 189 | 1877 A | Goals of Victory | [Question](https://codeforces.com/problemset/problem/1877/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1877%20A%20-%20Goals%20of%20Victory)
| 190 | 1878 B | Aleksa and Stack | [Question](https://codeforces.com/problemset/problem/1878/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1878%20B%20-%20Aleksa%20and%20Stack) | 190 | 1878 A | How Much Does Daytona Cost | [Question](https://codeforces.com/problemset/problem/1878/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1878%20A%20-%20How%20Much%20Does%20Daytona%20Cost)
| 191 | 1878 C | Vasilije in Cacak | [Question](https://codeforces.com/problemset/problem/1878/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1878%20C%20-%20Vasilije%20in%20Cacak) | 191 | 1878 B | Aleksa and Stack | [Question](https://codeforces.com/problemset/problem/1878/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1878%20B%20-%20Aleksa%20and%20Stack)
| 192 | 1879 A | Rigged! | [Question](https://codeforces.com/problemset/problem/1879/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1879%20A%20-%20Rigged!) | 192 | 1878 C | Vasilije in Cacak | [Question](https://codeforces.com/problemset/problem/1878/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1878%20C%20-%20Vasilije%20in%20Cacak)
| 193 | 1879 B | Chips on the Board | [Question](https://codeforces.com/problemset/problem/1879/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1879%20B%20-%20Chips%20on%20the%20Board) | 193 | 1879 A | Rigged! | [Question](https://codeforces.com/problemset/problem/1879/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1879%20A%20-%20Rigged!)
| 194 | 1881 A | Don't Try to Count | [Question](https://codeforces.com/problemset/problem/1881/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1881%20A%20-%20Don't%20Try%20to%20Count) | 194 | 1879 B | Chips on the Board | [Question](https://codeforces.com/problemset/problem/1879/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1879%20B%20-%20Chips%20on%20the%20Board)
| 195 | 1881 B | Three Threadlets | [Question](https://codeforces.com/problemset/problem/1881/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1881%20B%20-%20Three%20Threadlets) | 195 | 1881 A | Don't Try to Count | [Question](https://codeforces.com/problemset/problem/1881/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1881%20A%20-%20Don't%20Try%20to%20Count)
| 196 | 1881 C | Perfect Square | [Question](https://codeforces.com/problemset/problem/1881/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1881%20C%20-%20Perfect%20Square) | 196 | 1881 B | Three Threadlets | [Question](https://codeforces.com/problemset/problem/1881/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1881%20B%20-%20Three%20Threadlets)
| 197 | 1883 B | Chemistry | [Question](https://codeforces.com/problemset/problem/1883/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1883%20B%20-%20Chemistry) | 197 | 1881 C | Perfect Square | [Question](https://codeforces.com/problemset/problem/1881/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1881%20C%20-%20Perfect%20Square)
| 198 | 1890 A | Doremy's Paint 3 | [Question](https://codeforces.com/problemset/problem/1890/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1890%20A%20-%20Doremy's%20Paint%203) | 198 | 1883 B | Chemistry | [Question](https://codeforces.com/problemset/problem/1883/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1883%20B%20-%20Chemistry)
| 199 | 1894 A | Secret Sport | [Question](https://codeforces.com/problemset/problem/1894/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1894%20A%20-%20Secret%20Sport) | 199 | 1890 A | Doremy's Paint 3 | [Question](https://codeforces.com/problemset/problem/1890/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1890%20A%20-%20Doremy's%20Paint%203)
| 200 | 1895 A | Treasure Chest | [Question](https://codeforces.com/problemset/problem/1895/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1895%20A%20-%20Treasure%20Chest) | 200 | 1894 A | Secret Sport | [Question](https://codeforces.com/problemset/problem/1894/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1894%20A%20-%20Secret%20Sport)
| 201 | 1895 B | Points and Minimum Distance | [Question](https://codeforces.com/problemset/problem/1895/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1895%20B%20-%20Points%20and%20Minimum%20Distance) | 201 | 1895 A | Treasure Chest | [Question](https://codeforces.com/problemset/problem/1895/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1895%20A%20-%20Treasure%20Chest)
| 202 | 1896 A | Jagged Swaps | [Question](https://codeforces.com/problemset/problem/1896/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1896%20A%20-%20Jagged%20Swaps) | 202 | 1895 B | Points and Minimum Distance | [Question](https://codeforces.com/problemset/problem/1895/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1895%20B%20-%20Points%20and%20Minimum%20Distance)
| 203 | 1896 B | AB Flipping | [Question](https://codeforces.com/problemset/problem/1896/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1896%20B%20-%20AB%20Flipping) | 203 | 1896 A | Jagged Swaps | [Question](https://codeforces.com/problemset/problem/1896/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1896%20A%20-%20Jagged%20Swaps)
| 204 | 1898 A | Milica and String | [Question](https://codeforces.com/problemset/problem/1898/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1898%20A%20-%20Milica%20and%20String) | 204 | 1896 B | AB Flipping | [Question](https://codeforces.com/problemset/problem/1896/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1896%20B%20-%20AB%20Flipping)
| 205 | 1899 A | Game with Integers | [Question](https://codeforces.com/problemset/problem/1899/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1899%20A%20-%20Game%20with%20Integers) | 205 | 1898 A | Milica and String | [Question](https://codeforces.com/problemset/problem/1898/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1898%20A%20-%20Milica%20and%20String)
| 206 | 1900 A | Cover in Water | [Question](https://codeforces.com/problemset/problem/1900/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1900%20A%20-%20Cover%20in%20Water) | 206 | 1899 A | Game with Integers | [Question](https://codeforces.com/problemset/problem/1899/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1899%20A%20-%20Game%20with%20Integers)
| 207 | 1900 B | Laura and Operations | [Question](https://codeforces.com/problemset/problem/1900/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1900%20B%20-%20Laura%20and%20Operations) | 207 | 1900 A | Cover in Water | [Question](https://codeforces.com/problemset/problem/1900/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1900%20A%20-%20Cover%20in%20Water)
| 208 | 1901 A | Line Trip | [Question](https://codeforces.com/problemset/problem/1901/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1901%20A%20-%20Line%20Trip) | 208 | 1900 B | Laura and Operations | [Question](https://codeforces.com/problemset/problem/1900/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1900%20B%20-%20Laura%20and%20Operations)
| 209 | 1902 A | Binary Imbalance | [Question](https://codeforces.com/problemset/problem/1902/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1902%20A%20-%20Binary%20Imbalance) | 209 | 1901 A | Line Trip | [Question](https://codeforces.com/problemset/problem/1901/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1901%20A%20-%20Line%20Trip)
| 210 | 1903 A | Halloumi Boxes | [Question](https://codeforces.com/problemset/problem/1903/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1903%20A%20-%20Halloumi%20Boxes) | 210 | 1902 A | Binary Imbalance | [Question](https://codeforces.com/problemset/problem/1902/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1902%20A%20-%20Binary%20Imbalance)
| 211 | 1904 A | Forked! | [Question](https://codeforces.com/problemset/problem/1904/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1904%20A%20-%20Forked!) | 211 | 1903 A | Halloumi Boxes | [Question](https://codeforces.com/problemset/problem/1903/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1903%20A%20-%20Halloumi%20Boxes)
| 212 | 1904 B | Collecting Game | [Question](https://codeforces.com/problemset/problem/1904/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1904%20B%20-%20Collecting%20Game) | 212 | 1904 A | Forked! | [Question](https://codeforces.com/problemset/problem/1904/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1904%20A%20-%20Forked!)
| 213 | 1905 A | Constructive Problems | [Question](https://codeforces.com/problemset/problem/1905/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1905%20A%20-%20Constructive%20Problems) | 213 | 1904 B | Collecting Game | [Question](https://codeforces.com/problemset/problem/1904/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1904%20B%20-%20Collecting%20Game)
| 214 | 1905 B | Begginer's Zelda | [Question](https://codeforces.com/problemset/problem/1905/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1905%20B%20-%20Begginer's%20Zelda) | 214 | 1905 A | Constructive Problems | [Question](https://codeforces.com/problemset/problem/1905/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1905%20A%20-%20Constructive%20Problems)
| 215 | 1905 C | Largest Subsequence | [Question](https://codeforces.com/problemset/problem/1905/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1905%20C%20-%20Largest%20Subsequence) | 215 | 1905 B | Begginer's Zelda | [Question](https://codeforces.com/problemset/problem/1905/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1905%20B%20-%20Begginer's%20Zelda)
| 216 | 1907 A | Rook | [Question](https://codeforces.com/problemset/problem/1907/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907%20A%20-%20Rook) | 216 | 1905 C | Largest Subsequence | [Question](https://codeforces.com/problemset/problem/1905/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1905%20C%20-%20Largest%20Subsequence)
| 217 | 1907 B | YetnotherrokenKeoard | [Question](https://codeforces.com/problemset/problem/1907/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907%20B%20-%20YetnotherrokenKeoard) | 217 | 1907 A | Rook | [Question](https://codeforces.com/problemset/problem/1907/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907%20A%20-%20Rook)
| 218 | 1907 C | Removal of Unattractive Pairs | [Question](https://codeforces.com/problemset/problem/1907/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907%20C%20-%20Removal%20of%20Unattractive%20Pairs) | 218 | 1907 B | YetnotherrokenKeoard | [Question](https://codeforces.com/problemset/problem/1907/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907%20B%20-%20YetnotherrokenKeoard)
| 219 | 1909 A | Distinct Buttons | [Question](https://codeforces.com/problemset/problem/1909/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1909%20A%20-%20Distinct%20Buttons) | 219 | 1907 C | Removal of Unattractive Pairs | [Question](https://codeforces.com/problemset/problem/1907/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907%20C%20-%20Removal%20of%20Unattractive%20Pairs)
| 220 | 1912 L | LOL Lovers | [Question](https://codeforces.com/problemset/problem/1912/L) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1912%20L%20-%20LOL%20Lovers) | 220 | 1909 A | Distinct Buttons | [Question](https://codeforces.com/problemset/problem/1909/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1909%20A%20-%20Distinct%20Buttons)
| 221 | 1913 A | Rating Increase | [Question](https://codeforces.com/problemset/problem/1913/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1913%20A%20-%20Rating%20Increase) | 221 | 1912 L | LOL Lovers | [Question](https://codeforces.com/problemset/problem/1912/L) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1912%20L%20-%20LOL%20Lovers)
| 222 | 1913 B | Swap and Delete | [Question](https://codeforces.com/problemset/problem/1913/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1913%20B%20-%20Swap%20and%20Delete) | 222 | 1913 A | Rating Increase | [Question](https://codeforces.com/problemset/problem/1913/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1913%20A%20-%20Rating%20Increase)
| 223 | 1913 C | Game with Multiset | [Question](https://codeforces.com/problemset/problem/1913/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1913%20C%20-%20Game%20with%20Multiset) | 223 | 1913 B | Swap and Delete | [Question](https://codeforces.com/problemset/problem/1913/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1913%20B%20-%20Swap%20and%20Delete)
| 224 | 1914 A | Problemsolving Log | [Question](https://codeforces.com/problemset/problem/1914/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20A%20-%20Problemsolving%20Log) | 224 | 1913 C | Game with Multiset | [Question](https://codeforces.com/problemset/problem/1913/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1913%20C%20-%20Game%20with%20Multiset)
| 225 | 1914 B | Preparing for the Contest | [Question](https://codeforces.com/problemset/problem/1914/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20B%20-%20Preparing%20for%20the%20Contest) | 225 | 1914 A | Problemsolving Log | [Question](https://codeforces.com/problemset/problem/1914/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20A%20-%20Problemsolving%20Log)
| 226 | 1914 C | Quests | [Question](https://codeforces.com/problemset/problem/1914/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20C%20-%20Quests) | 226 | 1914 B | Preparing for the Contest | [Question](https://codeforces.com/problemset/problem/1914/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20B%20-%20Preparing%20for%20the%20Contest)
| 227 | 1914 D | Three Activities | [Question](https://codeforces.com/problemset/problem/1914/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20D%20-%20Three%20Activities) | 227 | 1914 C | Quests | [Question](https://codeforces.com/problemset/problem/1914/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20C%20-%20Quests)
| 228 | 1914 E1 | Game with Marbles (Easy Version) | [Question](https://codeforces.com/problemset/problem/1914/E1) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20E1%20-%20Game%20with%20Marbles%20(Easy%20Version)) | 228 | 1914 D | Three Activities | [Question](https://codeforces.com/problemset/problem/1914/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20D%20-%20Three%20Activities)
| 229 | 1914 E2 | Game with Marbles (Hard Version) | [Question](https://codeforces.com/problemset/problem/1914/E2) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20E2%20-%20Game%20with%20Marbles%20(Hard%20Version)) | 229 | 1914 E1 | Game with Marbles (Easy Version) | [Question](https://codeforces.com/problemset/problem/1914/E1) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20E1%20-%20Game%20with%20Marbles%20(Easy%20Version))
| 230 | 1915 A | Odd One Out | [Question](https://codeforces.com/problemset/problem/1915/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20A%20-%20Odd%20One%20Out) | 230 | 1914 E2 | Game with Marbles (Hard Version) | [Question](https://codeforces.com/problemset/problem/1914/E2) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1914%20E2%20-%20Game%20with%20Marbles%20(Hard%20Version))
| 231 | 1915 B | Not Quite Latin Square | [Question](https://codeforces.com/problemset/problem/1915/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20B%20-%20Not%20Quite%20Latin%20Square) | 231 | 1915 A | Odd One Out | [Question](https://codeforces.com/problemset/problem/1915/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20A%20-%20Odd%20One%20Out)
| 232 | 1915 C | Can I Square | [Question](https://codeforces.com/problemset/problem/1915/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20C%20-%20Can%20I%20Square) | 232 | 1915 B | Not Quite Latin Square | [Question](https://codeforces.com/problemset/problem/1915/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20B%20-%20Not%20Quite%20Latin%20Square)
| 233 | 1915 D | Unnatural Language Processing | [Question](https://codeforces.com/problemset/problem/1915/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20D%20-%20Unnatural%20Language%20Processing) | 233 | 1915 C | Can I Square | [Question](https://codeforces.com/problemset/problem/1915/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20C%20-%20Can%20I%20Square)
| 234 | 1915 E | Romantic Glasses | [Question](https://codeforces.com/problemset/problem/1915/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20E%20-%20Romantic%20Glasses) | 234 | 1915 D | Unnatural Language Processing | [Question](https://codeforces.com/problemset/problem/1915/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20D%20-%20Unnatural%20Language%20Processing)
| 235 | 1916 A | 2023 | [Question](https://codeforces.com/problemset/problem/1916/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1916%20A%20-%202023) | 235 | 1915 E | Romantic Glasses | [Question](https://codeforces.com/problemset/problem/1915/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1915%20E%20-%20Romantic%20Glasses)
| 236 | 1916 B | Two Divisors | [Question](https://codeforces.com/problemset/problem/1916/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1916%20B%20-%20Two%20Divisors) | 236 | 1916 A | 2023 | [Question](https://codeforces.com/problemset/problem/1916/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1916%20A%20-%202023)
| 237 | 1916 C | Training Before the Olympiad | [Question](https://codeforces.com/problemset/problem/1916/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1916%20C%20-%20Training%20Before%20the%20Olympiad) | 237 | 1916 B | Two Divisors | [Question](https://codeforces.com/problemset/problem/1916/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1916%20B%20-%20Two%20Divisors)
| 238 | 1916 D | Mathematical Problem | [Question](https://codeforces.com/problemset/problem/1916/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1916%20D%20-%20Mathematical%20Problem) | 238 | 1916 C | Training Before the Olympiad | [Question](https://codeforces.com/problemset/problem/1916/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1916%20C%20-%20Training%20Before%20the%20Olympiad)
| 239 | 1917 A | Least Product | [Question](https://codeforces.com/problemset/problem/1917/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1917%20A%20-%20Least%20Product) | 239 | 1916 D | Mathematical Problem | [Question](https://codeforces.com/problemset/problem/1916/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1916%20D%20-%20Mathematical%20Problem)
| 240 | 1917 B | Erase First or Second Letter | [Question](https://codeforces.com/problemset/problem/1917/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1917%20B%20-%20Erase%20First%20or%20Second%20Letter) | 240 | 1917 A | Least Product | [Question](https://codeforces.com/problemset/problem/1917/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1917%20A%20-%20Least%20Product)
| 241 | 1918 A | Brick Wall | [Question](https://codeforces.com/problemset/problem/1918/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1918%20A%20-%20Brick%20Wall) | 241 | 1917 B | Erase First or Second Letter | [Question](https://codeforces.com/problemset/problem/1917/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1917%20B%20-%20Erase%20First%20or%20Second%20Letter)
| 242 | 1918 B | Minimize Inversions | [Question](https://codeforces.com/problemset/problem/1918/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1918%20B%20-%20Minimize%20Inversions) | 242 | 1918 A | Brick Wall | [Question](https://codeforces.com/problemset/problem/1918/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1918%20A%20-%20Brick%20Wall)
| 243 | 1919 A | Wallet Exchange | [Question](https://codeforces.com/problemset/problem/1919/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1919%20A%20-%20Wallet%20Exchange) | 243 | 1918 B | Minimize Inversions | [Question](https://codeforces.com/problemset/problem/1918/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1918%20B%20-%20Minimize%20Inversions)
| 244 | 1919 B | Plus-Minus Split | [Question](https://codeforces.com/problemset/problem/1919/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1919%20B%20-%20Plus-Minus%20Split) | 244 | 1919 A | Wallet Exchange | [Question](https://codeforces.com/problemset/problem/1919/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1919%20A%20-%20Wallet%20Exchange)
| 245 | 1920 A | Satisfying Constraints | [Question](https://codeforces.com/problemset/problem/1920/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1920%20A%20-%20Satisfying%20Constraints) | 245 | 1919 B | Plus-Minus Split | [Question](https://codeforces.com/problemset/problem/1919/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1919%20B%20-%20Plus-Minus%20Split)
| 246 | 1920 B | Summation Game | [Question](https://codeforces.com/problemset/problem/1920/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1920%20B%20-%20Summation%20Game) | 246 | 1920 A | Satisfying Constraints | [Question](https://codeforces.com/problemset/problem/1920/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1920%20A%20-%20Satisfying%20Constraints)
| 247 | 1921 A | Square | [Question](https://codeforces.com/problemset/problem/1921/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1921%20A%20-%20Square) | 247 | 1920 B | Summation Game | [Question](https://codeforces.com/problemset/problem/1920/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1920%20B%20-%20Summation%20Game)
| 248 | 1921 B | Arranging Cats | [Question](https://codeforces.com/problemset/problem/1921/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1921%20B%20-%20Arranging%20Cats) | 248 | 1921 A | Square | [Question](https://codeforces.com/problemset/problem/1921/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1921%20A%20-%20Square)
| 249 | 1921 C | Sending Messages | [Question](https://codeforces.com/problemset/problem/1921/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1921%20C%20-%20Sending%20Messages) | 249 | 1921 B | Arranging Cats | [Question](https://codeforces.com/problemset/problem/1921/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1921%20B%20-%20Arranging%20Cats)
| 250 | 1921 D | Very Different Array | [Question](https://codeforces.com/problemset/problem/1921/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1921%20D%20-%20Very%20Different%20Array) | 250 | 1921 C | Sending Messages | [Question](https://codeforces.com/problemset/problem/1921/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1921%20C%20-%20Sending%20Messages)
| 251 | 1927 A | Make it White | [Question](https://codeforces.com/problemset/problem/1927/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20A%20-%20Make%20it%20White) | 251 | 1921 D | Very Different Array | [Question](https://codeforces.com/problemset/problem/1921/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1921%20D%20-%20Very%20Different%20Array)
| 252 | 1927 B | Following the String | [Question](https://codeforces.com/problemset/problem/1927/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20B%20-%20Following%20the%20String) | 252 | 1927 A | Make it White | [Question](https://codeforces.com/problemset/problem/1927/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20A%20-%20Make%20it%20White)
| 253 | 1927 C | Choose the Different Ones | [Question](https://codeforces.com/problemset/problem/1927/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20C%20-%20Choose%20the%20Different%20Ones) | 253 | 1927 B | Following the String | [Question](https://codeforces.com/problemset/problem/1927/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20B%20-%20Following%20the%20String)
| 254 | 1927 D | Find the Different Ones! | [Question](https://codeforces.com/problemset/problem/1927/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20D%20-%20Find%20the%20Different%20Ones!) | 254 | 1927 C | Choose the Different Ones | [Question](https://codeforces.com/problemset/problem/1927/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20C%20-%20Choose%20the%20Different%20Ones)
| 255 | 1927 E | Klever Permutation | [Question](https://codeforces.com/problemset/problem/1927/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20E%20-%20Klever%20Permutation) | 255 | 1927 D | Find the Different Ones! | [Question](https://codeforces.com/problemset/problem/1927/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20D%20-%20Find%20the%20Different%20Ones!)
| 256 | 1927 E | Klever Permutation | [Question](https://codeforces.com/problemset/problem/1927/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1927%20E%20-%20Klever%20Permutation)
</div> </div>
## 🚀 About Me ## 🚀 About Me
I am Shazid Mashrafi. I am Shazid Mashrafi.
I am currently studying Computer Science and Engineering & trying to work my way up in the programming world. I am currently studying Computer Science and Engineering & trying to work my way up in the programming world.