added 1666D

This commit is contained in:
ShazidMahsrafi 2024-07-12 22:43:02 +06:00
parent 54b80ddf4b
commit f1184ca3d8
2 changed files with 309 additions and 250 deletions

View File

@ -0,0 +1,58 @@
#include <bits/stdc++.h>
using namespace std;
#ifdef ONLINE_JUDGE
#define dbg(...)
#else
#include "Assets/debug.h"
#endif
#define int long long
#define ll long long
#define endl '\n'
#define ff first
#define ss second
#define ins insert
#define pb push_back
#define ppb pop_back
#define sz(x) (int)(x).size()
#define all(x) x.begin(), x.end()
#define rep(i,a,b) for(int i=a; i<b; ++i)
#define rrep(i,a,b) for(int i=a; i>=b; --i)
#define yn(f) f? cout<<"YES\n":cout<<"NO\n"
#define FAST (ios_base::sync_with_stdio(false), cin.tie(nullptr));
ll pow(ll x,ll y,ll m=1e9+7) {ll ans=1;x%=m;while(y){if(y&1)ans=(ans*x)%m;x=(x*x)%m;y>>=1;}return ans;}
void solve()
{
string s,t;
cin>>s>>t;
map<char,int>m;
for(auto c:s)
m[c]++;
for(auto c:t)
m[c]--;
for(auto [x,y]:m)
{
for(int i=0; i<s.size(); ++i)
{
if(s[i]==x && y>0)
{
s.erase(i,1);
y--;
i--;
}
}
}
yn(s==t);
}
signed main()
{
FAST;
int TCS = 1;
cin >> TCS;
for (int TC = 1; TC <= TCS; ++TC)
{
// cout<<"Case "<<TC<<": ";
solve();
}
}

501
Readme.md
View File

@ -114,256 +114,257 @@ This repository contains my solutions of Codeforces problems. They are in C++ la
| 102 | 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)
| 103 | 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)
| 104 | 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)
| 105 | 1675 B | Make It Increasing | [Question](https://codeforces.com/problemset/problem/1675/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1675%20B%20-%20Make%20It%20Increasing)
| 106 | 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)
| 107 | 1679 A | AvtoBus | [Question](https://codeforces.com/problemset/problem/1679/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1679%20A%20-%20AvtoBus)
| 108 | 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)
| 109 | 1696 B | NIT Destroys the Universe | [Question](https://codeforces.com/problemset/problem/1696/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1696%20B%20-%20NIT%20Destroys%20the%20Universe)
| 110 | 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)
| 111 | 1703 B | ICPC Balloons | [Question](https://codeforces.com/problemset/problem/1703/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1703%20B%20-%20ICPC%20Balloons)
| 112 | 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)
| 113 | 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)
| 114 | 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)
| 115 | 1726 A | Mainak and Array | [Question](https://codeforces.com/problemset/problem/1726/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1726%20A%20-%20Mainak%20and%20Array)
| 116 | 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)
| 117 | 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)
| 118 | 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)
| 119 | 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)
| 120 | 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)
| 121 | 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)
| 122 | 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)
| 123 | 1765 B | Broken Keyboard | [Question](https://codeforces.com/problemset/problem/1765/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1765%20B%20-%20Broken%20Keyboard)
| 124 | 1765 E | Exchange | [Question](https://codeforces.com/problemset/problem/1765/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1765%20E%20-%20Exchange)
| 125 | 1765 K | Torus Path | [Question](https://codeforces.com/problemset/problem/1765/K) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1765%20K%20-%20Torus%20Path)
| 126 | 1765 M | Minimum LCM | [Question](https://codeforces.com/problemset/problem/1765/M) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1765%20M%20-%20Minimum%20LCM)
| 127 | 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)
| 128 | 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)
| 129 | 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!)
| 130 | 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)
| 131 | 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)
| 132 | 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)
| 133 | 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)
| 134 | 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)
| 135 | 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)
| 136 | 1794 B | Not Dividing | [Question](https://codeforces.com/problemset/problem/1794/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1794%20B%20-%20Not%20Dividing)
| 137 | 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)
| 138 | 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)
| 139 | 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)
| 140 | 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)
| 141 | 1807 D | Odd Queries | [Question](https://codeforces.com/problemset/problem/1807/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1807%20D%20-%20Odd%20Queries)
| 142 | 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)
| 143 | 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)
| 144 | 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)
| 145 | 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)
| 146 | 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)
| 147 | 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)
| 148 | 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)
| 149 | 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)
| 150 | 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)
| 151 | 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)
| 152 | 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)
| 153 | 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)
| 154 | 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)
| 155 | 1832 B | Maximum Sum | [Question](https://codeforces.com/problemset/problem/1832/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1832%20B%20-%20Maximum%20Sum)
| 156 | 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)
| 157 | 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)
| 158 | 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)
| 159 | 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)
| 160 | 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)
| 161 | 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)
| 162 | 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)
| 163 | 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)
| 164 | 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)
| 165 | 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)
| 166 | 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)
| 167 | 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)
| 168 | 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)
| 169 | 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)
| 170 | 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)
| 171 | 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)
| 172 | 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)
| 173 | 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)
| 174 | 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)
| 175 | 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)
| 176 | 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)
| 177 | 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)
| 178 | 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)
| 179 | 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)
| 180 | 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)
| 181 | 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)
| 182 | 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)
| 183 | 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)
| 184 | 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)
| 185 | 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)
| 186 | 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)
| 187 | 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)
| 188 | 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)
| 189 | 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)
| 190 | 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)
| 191 | 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)
| 192 | 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)
| 193 | 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)
| 194 | 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)
| 195 | 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)
| 196 | 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)
| 197 | 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)
| 198 | 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)
| 199 | 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)
| 200 | 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)
| 201 | 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)
| 202 | 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)
| 203 | 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)
| 204 | 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)
| 205 | 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)
| 206 | 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)
| 207 | 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)
| 208 | 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)
| 209 | 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!)
| 210 | 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)
| 211 | 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)
| 212 | 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)
| 213 | 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)
| 214 | 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)
| 215 | 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)
| 216 | 1890 B | Qingshan Loves Strings | [Question](https://codeforces.com/problemset/problem/1890/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1890%20B%20-%20Qingshan%20Loves%20Strings)
| 217 | 1891 A | Sorting with Twos | [Question](https://codeforces.com/problemset/problem/1891/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1891%20A%20-%20Sorting%20with%20Twos)
| 218 | 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)
| 219 | 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)
| 220 | 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)
| 221 | 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)
| 222 | 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)
| 223 | 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)
| 224 | 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)
| 225 | 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)
| 226 | 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)
| 227 | 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)
| 228 | 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)
| 229 | 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)
| 230 | 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!)
| 231 | 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)
| 232 | 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)
| 233 | 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)
| 234 | 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)
| 235 | 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)
| 236 | 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)
| 237 | 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)
| 238 | 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)
| 239 | 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)
| 240 | 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)
| 241 | 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)
| 242 | 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)
| 243 | 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)
| 244 | 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)
| 245 | 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)
| 246 | 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)
| 247 | 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))
| 248 | 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))
| 249 | 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)
| 250 | 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)
| 251 | 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)
| 252 | 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)
| 253 | 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)
| 254 | 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)
| 255 | 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)
| 256 | 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)
| 257 | 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)
| 258 | 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)
| 259 | 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)
| 260 | 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)
| 261 | 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)
| 262 | 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)
| 263 | 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)
| 264 | 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)
| 265 | 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)
| 266 | 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)
| 267 | 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)
| 268 | 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)
| 269 | 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)
| 270 | 1923 A | Moving Chips | [Question](https://codeforces.com/problemset/problem/1923/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1923%20A%20-%20Moving%20Chips)
| 271 | 1923 B | Monsters Attack! | [Question](https://codeforces.com/problemset/problem/1923/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1923%20B%20-%20Monsters%20Attack!)
| 272 | 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)
| 273 | 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)
| 274 | 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)
| 275 | 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!)
| 276 | 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)
| 277 | 1928 A | Rectangle Cutting | [Question](https://codeforces.com/problemset/problem/1928/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1928%20A%20-%20Rectangle%20Cutting)
| 278 | 1928 B | Equalize | [Question](https://codeforces.com/problemset/problem/1928/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1928%20B%20-%20Equalize)
| 279 | 1929 A | Sasha and the Beautiful Array | [Question](https://codeforces.com/problemset/problem/1929/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1929%20A%20-%20Sasha%20and%20the%20Beautiful%20Array)
| 280 | 1929 B | Sasha and the Drawing | [Question](https://codeforces.com/problemset/problem/1929/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1929%20B%20-%20Sasha%20and%20the%20Drawing)
| 281 | 1930 A | Maximise The Score | [Question](https://codeforces.com/problemset/problem/1930/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1930%20A%20-%20Maximise%20The%20Score)
| 282 | 1930 B | Permutation Printing | [Question](https://codeforces.com/problemset/problem/1930/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1930%20B%20-%20Permutation%20Printing)
| 283 | 1931 A | Recovering a Small String | [Question](https://codeforces.com/problemset/problem/1931/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1931%20A%20-%20Recovering%20a%20Small%20String)
| 284 | 1931 B | Make Equal | [Question](https://codeforces.com/problemset/problem/1931/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1931%20B%20-%20Make%20Equal)
| 285 | 1931 C | Make Equal Again | [Question](https://codeforces.com/problemset/problem/1931/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1931%20C%20-%20Make%20Equal%20Again)
| 286 | 1933 A | Turtle Puzzle Rearrange and Negate | [Question](https://codeforces.com/problemset/problem/1933/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1933%20A%20-%20Turtle%20Puzzle%20Rearrange%20and%20Negate)
| 287 | 1933 B | Turtle Math Fast Three Task | [Question](https://codeforces.com/problemset/problem/1933/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1933%20B%20-%20Turtle%20Math%20Fast%20Three%20Task)
| 288 | 1933 C | Turtle Fingers Count the Values of k | [Question](https://codeforces.com/problemset/problem/1933/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1933%20C%20-%20Turtle%20Fingers%20Count%20the%20Values%20of%20k)
| 289 | 1945 A | Setting up Camp | [Question](https://codeforces.com/problemset/problem/1945/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1945%20A%20-%20Setting%20up%20Camp)
| 290 | 1954 C | Long Multiplication | [Question](https://codeforces.com/problemset/problem/1954/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1954%20C%20-%20Long%20Multiplication)
| 291 | 1955 A | Yogurt Sale | [Question](https://codeforces.com/problemset/problem/1955/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20A%20-%20Yogurt%20Sale)
| 292 | 1955 B | Progressive Square | [Question](https://codeforces.com/problemset/problem/1955/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20B%20-%20Progressive%20Square)
| 293 | 1955 C | Inhabitant of the Deep Sea | [Question](https://codeforces.com/problemset/problem/1955/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20C%20-%20Inhabitant%20of%20the%20Deep%20Sea)
| 294 | 1955 D | Inaccurate Subsequence Search | [Question](https://codeforces.com/problemset/problem/1955/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20D%20-%20Inaccurate%20Subsequence%20Search)
| 295 | 1955 E | Long Inversions | [Question](https://codeforces.com/problemset/problem/1955/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20E%20-%20Long%20Inversions)
| 296 | 1955 F | Unfair Game | [Question](https://codeforces.com/problemset/problem/1955/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20F%20-%20Unfair%20Game)
| 297 | 1956 A | Nene's Game | [Question](https://codeforces.com/problemset/problem/1956/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1956%20A%20-%20Nene's%20Game)
| 298 | 1956 B | Nene and the Card Game | [Question](https://codeforces.com/problemset/problem/1956/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1956%20B%20-%20Nene%20and%20the%20Card%20Game)
| 299 | 1956 C | Nene's Magical Matrix | [Question](https://codeforces.com/problemset/problem/1956/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1956%20C%20-%20Nene's%20Magical%20Matrix)
| 300 | 1957 A | Stickogon | [Question](https://codeforces.com/problemset/problem/1957/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1957%20A%20-%20Stickogon)
| 301 | 1957 B | A BIT of a Construction | [Question](https://codeforces.com/problemset/problem/1957/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1957%20B%20-%20A%20BIT%20of%20a%20Construction)
| 302 | 1957 C | How Does the Rook Move | [Question](https://codeforces.com/problemset/problem/1957/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1957%20C%20-%20How%20Does%20the%20Rook%20Move)
| 303 | 1968 A | Maximize | [Question](https://codeforces.com/problemset/problem/1968/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20A%20-%20Maximize)
| 304 | 1968 B | Prefiquence | [Question](https://codeforces.com/problemset/problem/1968/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20B%20-%20Prefiquence)
| 305 | 1968 C | Assembly via Remainders | [Question](https://codeforces.com/problemset/problem/1968/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20C%20-%20Assembly%20via%20Remainders)
| 306 | 1968 D | Permutation Game | [Question](https://codeforces.com/problemset/problem/1968/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20D%20-%20Permutation%20Game)
| 307 | 1968 E | Cells Arrangement | [Question](https://codeforces.com/problemset/problem/1968/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20E%20-%20Cells%20Arrangement)
| 308 | 1968 F | Equal XOR Segments | [Question](https://codeforces.com/problemset/problem/1968/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20F%20-%20Equal%20XOR%20Segments)
| 309 | 1968 G1 | Division + LCP (easy version) | [Question](https://codeforces.com/problemset/problem/1968/G1) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20G1%20-%20Division%20+%20LCP%20(easy%20version))
| 310 | 1969 A | Two Friends | [Question](https://codeforces.com/problemset/problem/1969/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1969%20A%20-%20Two%20Friends)
| 311 | 1969 B | Shifts and Sorting | [Question](https://codeforces.com/problemset/problem/1969/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1969%20B%20-%20Shifts%20and%20Sorting)
| 312 | 1971 A | My First Sorting Problem | [Question](https://codeforces.com/problemset/problem/1971/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20A%20-%20My%20First%20Sorting%20Problem)
| 313 | 1971 B | Different String | [Question](https://codeforces.com/problemset/problem/1971/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20B%20-%20Different%20String)
| 314 | 1971 C | Clock and Strings | [Question](https://codeforces.com/problemset/problem/1971/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20C%20-%20Clock%20and%20Strings)
| 315 | 1971 D | Binary Cut | [Question](https://codeforces.com/problemset/problem/1971/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20D%20-%20Binary%20Cut)
| 316 | 1971 E | Find the Car | [Question](https://codeforces.com/problemset/problem/1971/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20E%20-%20Find%20the%20Car)
| 317 | 1971 F | Circle Perimeter | [Question](https://codeforces.com/problemset/problem/1971/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20F%20-%20Circle%20Perimeter)
| 318 | 1976 A | Verify Password | [Question](https://codeforces.com/problemset/problem/1976/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1976%20A%20-%20Verify%20Password)
| 319 | 1976 B | Increase Decrease Copy | [Question](https://codeforces.com/problemset/problem/1976/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1976%20B%20-%20Increase%20Decrease%20Copy)
| 320 | 1977 A | Little Nikita | [Question](https://codeforces.com/problemset/problem/1977/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1977%20A%20-%20Little%20Nikita)
| 321 | 1978 A | Alice and Books | [Question](https://codeforces.com/problemset/problem/1978/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1978%20A%20-%20Alice%20and%20Books)
| 322 | 1978 B | New Bakery | [Question](https://codeforces.com/problemset/problem/1978/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1978%20B%20-%20New%20Bakery)
| 323 | 1979 A | Guess the Maximum | [Question](https://codeforces.com/problemset/problem/1979/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1979%20A%20-%20Guess%20the%20Maximum)
| 324 | 1979 B | XOR Sequences | [Question](https://codeforces.com/problemset/problem/1979/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1979%20B%20-%20XOR%20Sequences)
| 325 | 1979 C | Earning on Bets | [Question](https://codeforces.com/problemset/problem/1979/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1979%20C%20-%20Earning%20on%20Bets)
| 326 | 1980 A | Problem Generator | [Question](https://codeforces.com/problemset/problem/1980/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1980%20A%20-%20Problem%20Generator)
| 327 | 1980 B | Choosing Cubes | [Question](https://codeforces.com/problemset/problem/1980/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1980%20B%20-%20Choosing%20Cubes)
| 328 | 1980 C | Sofia and the Lost Operations | [Question](https://codeforces.com/problemset/problem/1980/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1980%20C%20-%20Sofia%20and%20the%20Lost%20Operations)
| 329 | 1980 D | GCD-sequence | [Question](https://codeforces.com/problemset/problem/1980/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1980%20D%20-%20GCD-sequence)
| 330 | 1981 A | Turtle and Piggy Are Playing a Game | [Question](https://codeforces.com/problemset/problem/1981/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1981%20A%20-%20Turtle%20and%20Piggy%20Are%20Playing%20a%20Game)
| 331 | 1981 B | Turtle and an Infinite Sequence | [Question](https://codeforces.com/problemset/problem/1981/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1981%20B%20-%20Turtle%20and%20an%20Infinite%20Sequence)
| 332 | 1981 C | Turtle and an Incomplete Sequence | [Question](https://codeforces.com/problemset/problem/1981/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1981%20C%20-%20Turtle%20and%20an%20Incomplete%20Sequence)
| 333 | 1982 A | Soccer | [Question](https://codeforces.com/problemset/problem/1982/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1982%20A%20-%20Soccer)
| 334 | 1982 B | Collatz Conjecture | [Question](https://codeforces.com/problemset/problem/1982/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1982%20B%20-%20Collatz%20Conjecture)
| 335 | 1982 C | Boring Day | [Question](https://codeforces.com/problemset/problem/1982/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1982%20C%20-%20Boring%20Day)
| 336 | 1982 D | Beauty of the mountains | [Question](https://codeforces.com/problemset/problem/1982/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1982%20D%20-%20Beauty%20of%20the%20mountains)
| 337 | 1985 A | Creating Words | [Question](https://codeforces.com/problemset/problem/1985/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20A%20-%20Creating%20Words)
| 338 | 1985 B | Maximum Multiple Sum | [Question](https://codeforces.com/problemset/problem/1985/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20B%20-%20Maximum%20Multiple%20Sum)
| 339 | 1985 C | Good Prefixes | [Question](https://codeforces.com/problemset/problem/1985/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20C%20-%20Good%20Prefixes)
| 340 | 1985 D | Manhattan Circle | [Question](https://codeforces.com/problemset/problem/1985/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20D%20-%20Manhattan%20Circle)
| 341 | 1985 E | Secret Box | [Question](https://codeforces.com/problemset/problem/1985/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20E%20-%20Secret%20Box)
| 342 | 1985 F | Final Boss | [Question](https://codeforces.com/problemset/problem/1985/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20F%20-%20Final%20Boss)
| 343 | 1985 G | D-Function | [Question](https://codeforces.com/problemset/problem/1985/G) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20G%20-%20D-Function)
| 344 | 1986 A | X Axis | [Question](https://codeforces.com/problemset/problem/1986/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20A%20-%20X%20Axis)
| 345 | 1986 B | Matrix Stabilization | [Question](https://codeforces.com/problemset/problem/1986/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20B%20-%20Matrix%20Stabilization)
| 346 | 1986 C | Update Queries | [Question](https://codeforces.com/problemset/problem/1986/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20C%20-%20Update%20Queries)
| 347 | 1986 D | Mathematical Problem | [Question](https://codeforces.com/problemset/problem/1986/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20D%20-%20Mathematical%20Problem)
| 348 | 1986 E | Beautiful Array | [Question](https://codeforces.com/problemset/problem/1986/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20E%20-%20Beautiful%20Array)
| 349 | 1989 A | Catch the Coin | [Question](https://codeforces.com/problemset/problem/1989/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1989%20A%20-%20Catch%20the%20Coin)
| 350 | 1989 B | Substring and Subsequence | [Question](https://codeforces.com/problemset/problem/1989/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1989%20B%20-%20Substring%20and%20Subsequence)
| 351 | 1989 C | Two Movies | [Question](https://codeforces.com/problemset/problem/1989/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1989%20C%20-%20Two%20Movies)
| 352 | 1992 A | Only Pluses | [Question](https://codeforces.com/problemset/problem/1992/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1992%20A%20-%20Only%20Pluses)
| 353 | 1992 B | Angry Monk | [Question](https://codeforces.com/problemset/problem/1992/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1992%20B%20-%20Angry%20Monk)
| 354 | 1992 C | Gorilla and Permutation | [Question](https://codeforces.com/problemset/problem/1992/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1992%20C%20-%20Gorilla%20and%20Permutation)
| 105 | 1666 D | Deletive Editing | [Question](https://codeforces.com/problemset/problem/1666/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1666%20D%20-%20Deletive%20Editing)
| 106 | 1675 B | Make It Increasing | [Question](https://codeforces.com/problemset/problem/1675/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1675%20B%20-%20Make%20It%20Increasing)
| 107 | 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)
| 108 | 1679 A | AvtoBus | [Question](https://codeforces.com/problemset/problem/1679/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1679%20A%20-%20AvtoBus)
| 109 | 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)
| 110 | 1696 B | NIT Destroys the Universe | [Question](https://codeforces.com/problemset/problem/1696/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1696%20B%20-%20NIT%20Destroys%20the%20Universe)
| 111 | 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)
| 112 | 1703 B | ICPC Balloons | [Question](https://codeforces.com/problemset/problem/1703/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1703%20B%20-%20ICPC%20Balloons)
| 113 | 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)
| 114 | 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)
| 115 | 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)
| 116 | 1726 A | Mainak and Array | [Question](https://codeforces.com/problemset/problem/1726/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1726%20A%20-%20Mainak%20and%20Array)
| 117 | 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)
| 118 | 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)
| 119 | 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)
| 120 | 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)
| 121 | 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)
| 122 | 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)
| 123 | 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)
| 124 | 1765 B | Broken Keyboard | [Question](https://codeforces.com/problemset/problem/1765/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1765%20B%20-%20Broken%20Keyboard)
| 125 | 1765 E | Exchange | [Question](https://codeforces.com/problemset/problem/1765/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1765%20E%20-%20Exchange)
| 126 | 1765 K | Torus Path | [Question](https://codeforces.com/problemset/problem/1765/K) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1765%20K%20-%20Torus%20Path)
| 127 | 1765 M | Minimum LCM | [Question](https://codeforces.com/problemset/problem/1765/M) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1765%20M%20-%20Minimum%20LCM)
| 128 | 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)
| 129 | 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)
| 130 | 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!)
| 131 | 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)
| 132 | 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)
| 133 | 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)
| 134 | 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)
| 135 | 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)
| 136 | 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)
| 137 | 1794 B | Not Dividing | [Question](https://codeforces.com/problemset/problem/1794/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1794%20B%20-%20Not%20Dividing)
| 138 | 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)
| 139 | 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)
| 140 | 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)
| 141 | 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)
| 142 | 1807 D | Odd Queries | [Question](https://codeforces.com/problemset/problem/1807/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1807%20D%20-%20Odd%20Queries)
| 143 | 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)
| 144 | 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)
| 145 | 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)
| 146 | 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)
| 147 | 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)
| 148 | 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)
| 149 | 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)
| 150 | 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)
| 151 | 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)
| 152 | 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)
| 153 | 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)
| 154 | 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)
| 155 | 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)
| 156 | 1832 B | Maximum Sum | [Question](https://codeforces.com/problemset/problem/1832/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1832%20B%20-%20Maximum%20Sum)
| 157 | 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)
| 158 | 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)
| 159 | 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)
| 160 | 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)
| 161 | 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)
| 162 | 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)
| 163 | 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)
| 164 | 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)
| 165 | 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)
| 166 | 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)
| 167 | 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)
| 168 | 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)
| 169 | 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)
| 170 | 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)
| 171 | 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)
| 172 | 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)
| 173 | 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)
| 174 | 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)
| 175 | 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)
| 176 | 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)
| 177 | 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)
| 178 | 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)
| 179 | 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)
| 180 | 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)
| 181 | 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)
| 182 | 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)
| 183 | 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)
| 184 | 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)
| 185 | 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)
| 186 | 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)
| 187 | 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)
| 188 | 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)
| 189 | 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)
| 190 | 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)
| 191 | 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)
| 192 | 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)
| 193 | 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)
| 194 | 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)
| 195 | 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)
| 196 | 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)
| 197 | 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)
| 198 | 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)
| 199 | 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)
| 200 | 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)
| 201 | 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)
| 202 | 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)
| 203 | 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)
| 204 | 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)
| 205 | 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)
| 206 | 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)
| 207 | 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)
| 208 | 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)
| 209 | 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)
| 210 | 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!)
| 211 | 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)
| 212 | 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)
| 213 | 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)
| 214 | 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)
| 215 | 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)
| 216 | 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)
| 217 | 1890 B | Qingshan Loves Strings | [Question](https://codeforces.com/problemset/problem/1890/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1890%20B%20-%20Qingshan%20Loves%20Strings)
| 218 | 1891 A | Sorting with Twos | [Question](https://codeforces.com/problemset/problem/1891/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1891%20A%20-%20Sorting%20with%20Twos)
| 219 | 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)
| 220 | 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)
| 221 | 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)
| 222 | 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)
| 223 | 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)
| 224 | 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)
| 225 | 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)
| 226 | 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)
| 227 | 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)
| 228 | 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)
| 229 | 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)
| 230 | 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)
| 231 | 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!)
| 232 | 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)
| 233 | 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)
| 234 | 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)
| 235 | 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)
| 236 | 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)
| 237 | 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)
| 238 | 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)
| 239 | 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)
| 240 | 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)
| 241 | 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)
| 242 | 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)
| 243 | 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)
| 244 | 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)
| 245 | 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)
| 246 | 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)
| 247 | 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)
| 248 | 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))
| 249 | 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))
| 250 | 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)
| 251 | 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)
| 252 | 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)
| 253 | 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)
| 254 | 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)
| 255 | 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)
| 256 | 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)
| 257 | 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)
| 258 | 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)
| 259 | 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)
| 260 | 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)
| 261 | 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)
| 262 | 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)
| 263 | 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)
| 264 | 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)
| 265 | 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)
| 266 | 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)
| 267 | 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)
| 268 | 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)
| 269 | 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)
| 270 | 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)
| 271 | 1923 A | Moving Chips | [Question](https://codeforces.com/problemset/problem/1923/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1923%20A%20-%20Moving%20Chips)
| 272 | 1923 B | Monsters Attack! | [Question](https://codeforces.com/problemset/problem/1923/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1923%20B%20-%20Monsters%20Attack!)
| 273 | 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)
| 274 | 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)
| 275 | 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)
| 276 | 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!)
| 277 | 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)
| 278 | 1928 A | Rectangle Cutting | [Question](https://codeforces.com/problemset/problem/1928/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1928%20A%20-%20Rectangle%20Cutting)
| 279 | 1928 B | Equalize | [Question](https://codeforces.com/problemset/problem/1928/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1928%20B%20-%20Equalize)
| 280 | 1929 A | Sasha and the Beautiful Array | [Question](https://codeforces.com/problemset/problem/1929/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1929%20A%20-%20Sasha%20and%20the%20Beautiful%20Array)
| 281 | 1929 B | Sasha and the Drawing | [Question](https://codeforces.com/problemset/problem/1929/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1929%20B%20-%20Sasha%20and%20the%20Drawing)
| 282 | 1930 A | Maximise The Score | [Question](https://codeforces.com/problemset/problem/1930/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1930%20A%20-%20Maximise%20The%20Score)
| 283 | 1930 B | Permutation Printing | [Question](https://codeforces.com/problemset/problem/1930/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1930%20B%20-%20Permutation%20Printing)
| 284 | 1931 A | Recovering a Small String | [Question](https://codeforces.com/problemset/problem/1931/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1931%20A%20-%20Recovering%20a%20Small%20String)
| 285 | 1931 B | Make Equal | [Question](https://codeforces.com/problemset/problem/1931/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1931%20B%20-%20Make%20Equal)
| 286 | 1931 C | Make Equal Again | [Question](https://codeforces.com/problemset/problem/1931/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1931%20C%20-%20Make%20Equal%20Again)
| 287 | 1933 A | Turtle Puzzle Rearrange and Negate | [Question](https://codeforces.com/problemset/problem/1933/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1933%20A%20-%20Turtle%20Puzzle%20Rearrange%20and%20Negate)
| 288 | 1933 B | Turtle Math Fast Three Task | [Question](https://codeforces.com/problemset/problem/1933/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1933%20B%20-%20Turtle%20Math%20Fast%20Three%20Task)
| 289 | 1933 C | Turtle Fingers Count the Values of k | [Question](https://codeforces.com/problemset/problem/1933/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1933%20C%20-%20Turtle%20Fingers%20Count%20the%20Values%20of%20k)
| 290 | 1945 A | Setting up Camp | [Question](https://codeforces.com/problemset/problem/1945/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1945%20A%20-%20Setting%20up%20Camp)
| 291 | 1954 C | Long Multiplication | [Question](https://codeforces.com/problemset/problem/1954/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1954%20C%20-%20Long%20Multiplication)
| 292 | 1955 A | Yogurt Sale | [Question](https://codeforces.com/problemset/problem/1955/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20A%20-%20Yogurt%20Sale)
| 293 | 1955 B | Progressive Square | [Question](https://codeforces.com/problemset/problem/1955/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20B%20-%20Progressive%20Square)
| 294 | 1955 C | Inhabitant of the Deep Sea | [Question](https://codeforces.com/problemset/problem/1955/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20C%20-%20Inhabitant%20of%20the%20Deep%20Sea)
| 295 | 1955 D | Inaccurate Subsequence Search | [Question](https://codeforces.com/problemset/problem/1955/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20D%20-%20Inaccurate%20Subsequence%20Search)
| 296 | 1955 E | Long Inversions | [Question](https://codeforces.com/problemset/problem/1955/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20E%20-%20Long%20Inversions)
| 297 | 1955 F | Unfair Game | [Question](https://codeforces.com/problemset/problem/1955/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1955%20F%20-%20Unfair%20Game)
| 298 | 1956 A | Nene's Game | [Question](https://codeforces.com/problemset/problem/1956/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1956%20A%20-%20Nene's%20Game)
| 299 | 1956 B | Nene and the Card Game | [Question](https://codeforces.com/problemset/problem/1956/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1956%20B%20-%20Nene%20and%20the%20Card%20Game)
| 300 | 1956 C | Nene's Magical Matrix | [Question](https://codeforces.com/problemset/problem/1956/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1956%20C%20-%20Nene's%20Magical%20Matrix)
| 301 | 1957 A | Stickogon | [Question](https://codeforces.com/problemset/problem/1957/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1957%20A%20-%20Stickogon)
| 302 | 1957 B | A BIT of a Construction | [Question](https://codeforces.com/problemset/problem/1957/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1957%20B%20-%20A%20BIT%20of%20a%20Construction)
| 303 | 1957 C | How Does the Rook Move | [Question](https://codeforces.com/problemset/problem/1957/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1957%20C%20-%20How%20Does%20the%20Rook%20Move)
| 304 | 1968 A | Maximize | [Question](https://codeforces.com/problemset/problem/1968/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20A%20-%20Maximize)
| 305 | 1968 B | Prefiquence | [Question](https://codeforces.com/problemset/problem/1968/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20B%20-%20Prefiquence)
| 306 | 1968 C | Assembly via Remainders | [Question](https://codeforces.com/problemset/problem/1968/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20C%20-%20Assembly%20via%20Remainders)
| 307 | 1968 D | Permutation Game | [Question](https://codeforces.com/problemset/problem/1968/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20D%20-%20Permutation%20Game)
| 308 | 1968 E | Cells Arrangement | [Question](https://codeforces.com/problemset/problem/1968/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20E%20-%20Cells%20Arrangement)
| 309 | 1968 F | Equal XOR Segments | [Question](https://codeforces.com/problemset/problem/1968/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20F%20-%20Equal%20XOR%20Segments)
| 310 | 1968 G1 | Division + LCP (easy version) | [Question](https://codeforces.com/problemset/problem/1968/G1) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1968%20G1%20-%20Division%20+%20LCP%20(easy%20version))
| 311 | 1969 A | Two Friends | [Question](https://codeforces.com/problemset/problem/1969/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1969%20A%20-%20Two%20Friends)
| 312 | 1969 B | Shifts and Sorting | [Question](https://codeforces.com/problemset/problem/1969/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1969%20B%20-%20Shifts%20and%20Sorting)
| 313 | 1971 A | My First Sorting Problem | [Question](https://codeforces.com/problemset/problem/1971/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20A%20-%20My%20First%20Sorting%20Problem)
| 314 | 1971 B | Different String | [Question](https://codeforces.com/problemset/problem/1971/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20B%20-%20Different%20String)
| 315 | 1971 C | Clock and Strings | [Question](https://codeforces.com/problemset/problem/1971/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20C%20-%20Clock%20and%20Strings)
| 316 | 1971 D | Binary Cut | [Question](https://codeforces.com/problemset/problem/1971/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20D%20-%20Binary%20Cut)
| 317 | 1971 E | Find the Car | [Question](https://codeforces.com/problemset/problem/1971/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20E%20-%20Find%20the%20Car)
| 318 | 1971 F | Circle Perimeter | [Question](https://codeforces.com/problemset/problem/1971/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1971%20F%20-%20Circle%20Perimeter)
| 319 | 1976 A | Verify Password | [Question](https://codeforces.com/problemset/problem/1976/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1976%20A%20-%20Verify%20Password)
| 320 | 1976 B | Increase Decrease Copy | [Question](https://codeforces.com/problemset/problem/1976/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1976%20B%20-%20Increase%20Decrease%20Copy)
| 321 | 1977 A | Little Nikita | [Question](https://codeforces.com/problemset/problem/1977/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1977%20A%20-%20Little%20Nikita)
| 322 | 1978 A | Alice and Books | [Question](https://codeforces.com/problemset/problem/1978/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1978%20A%20-%20Alice%20and%20Books)
| 323 | 1978 B | New Bakery | [Question](https://codeforces.com/problemset/problem/1978/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1978%20B%20-%20New%20Bakery)
| 324 | 1979 A | Guess the Maximum | [Question](https://codeforces.com/problemset/problem/1979/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1979%20A%20-%20Guess%20the%20Maximum)
| 325 | 1979 B | XOR Sequences | [Question](https://codeforces.com/problemset/problem/1979/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1979%20B%20-%20XOR%20Sequences)
| 326 | 1979 C | Earning on Bets | [Question](https://codeforces.com/problemset/problem/1979/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1979%20C%20-%20Earning%20on%20Bets)
| 327 | 1980 A | Problem Generator | [Question](https://codeforces.com/problemset/problem/1980/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1980%20A%20-%20Problem%20Generator)
| 328 | 1980 B | Choosing Cubes | [Question](https://codeforces.com/problemset/problem/1980/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1980%20B%20-%20Choosing%20Cubes)
| 329 | 1980 C | Sofia and the Lost Operations | [Question](https://codeforces.com/problemset/problem/1980/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1980%20C%20-%20Sofia%20and%20the%20Lost%20Operations)
| 330 | 1980 D | GCD-sequence | [Question](https://codeforces.com/problemset/problem/1980/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1980%20D%20-%20GCD-sequence)
| 331 | 1981 A | Turtle and Piggy Are Playing a Game | [Question](https://codeforces.com/problemset/problem/1981/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1981%20A%20-%20Turtle%20and%20Piggy%20Are%20Playing%20a%20Game)
| 332 | 1981 B | Turtle and an Infinite Sequence | [Question](https://codeforces.com/problemset/problem/1981/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1981%20B%20-%20Turtle%20and%20an%20Infinite%20Sequence)
| 333 | 1981 C | Turtle and an Incomplete Sequence | [Question](https://codeforces.com/problemset/problem/1981/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1981%20C%20-%20Turtle%20and%20an%20Incomplete%20Sequence)
| 334 | 1982 A | Soccer | [Question](https://codeforces.com/problemset/problem/1982/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1982%20A%20-%20Soccer)
| 335 | 1982 B | Collatz Conjecture | [Question](https://codeforces.com/problemset/problem/1982/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1982%20B%20-%20Collatz%20Conjecture)
| 336 | 1982 C | Boring Day | [Question](https://codeforces.com/problemset/problem/1982/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1982%20C%20-%20Boring%20Day)
| 337 | 1982 D | Beauty of the mountains | [Question](https://codeforces.com/problemset/problem/1982/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1982%20D%20-%20Beauty%20of%20the%20mountains)
| 338 | 1985 A | Creating Words | [Question](https://codeforces.com/problemset/problem/1985/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20A%20-%20Creating%20Words)
| 339 | 1985 B | Maximum Multiple Sum | [Question](https://codeforces.com/problemset/problem/1985/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20B%20-%20Maximum%20Multiple%20Sum)
| 340 | 1985 C | Good Prefixes | [Question](https://codeforces.com/problemset/problem/1985/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20C%20-%20Good%20Prefixes)
| 341 | 1985 D | Manhattan Circle | [Question](https://codeforces.com/problemset/problem/1985/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20D%20-%20Manhattan%20Circle)
| 342 | 1985 E | Secret Box | [Question](https://codeforces.com/problemset/problem/1985/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20E%20-%20Secret%20Box)
| 343 | 1985 F | Final Boss | [Question](https://codeforces.com/problemset/problem/1985/F) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20F%20-%20Final%20Boss)
| 344 | 1985 G | D-Function | [Question](https://codeforces.com/problemset/problem/1985/G) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1985%20G%20-%20D-Function)
| 345 | 1986 A | X Axis | [Question](https://codeforces.com/problemset/problem/1986/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20A%20-%20X%20Axis)
| 346 | 1986 B | Matrix Stabilization | [Question](https://codeforces.com/problemset/problem/1986/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20B%20-%20Matrix%20Stabilization)
| 347 | 1986 C | Update Queries | [Question](https://codeforces.com/problemset/problem/1986/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20C%20-%20Update%20Queries)
| 348 | 1986 D | Mathematical Problem | [Question](https://codeforces.com/problemset/problem/1986/D) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20D%20-%20Mathematical%20Problem)
| 349 | 1986 E | Beautiful Array | [Question](https://codeforces.com/problemset/problem/1986/E) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1986%20E%20-%20Beautiful%20Array)
| 350 | 1989 A | Catch the Coin | [Question](https://codeforces.com/problemset/problem/1989/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1989%20A%20-%20Catch%20the%20Coin)
| 351 | 1989 B | Substring and Subsequence | [Question](https://codeforces.com/problemset/problem/1989/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1989%20B%20-%20Substring%20and%20Subsequence)
| 352 | 1989 C | Two Movies | [Question](https://codeforces.com/problemset/problem/1989/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1989%20C%20-%20Two%20Movies)
| 353 | 1992 A | Only Pluses | [Question](https://codeforces.com/problemset/problem/1992/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1992%20A%20-%20Only%20Pluses)
| 354 | 1992 B | Angry Monk | [Question](https://codeforces.com/problemset/problem/1992/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1992%20B%20-%20Angry%20Monk)
| 355 | 1992 C | Gorilla and Permutation | [Question](https://codeforces.com/problemset/problem/1992/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1992%20C%20-%20Gorilla%20and%20Permutation)