Category: Codeforces

13
Jun
2017

Codeforces: A. Next Round

My code: didn’t passed all testcase: #include<bits/stdc++.h> using namespace std; int main() { int n,k; int a[100];…

13
Mar
2016

Codeforces Solution : Theatre Square

Here to remember: – Theatre square is rectangular shape n X m meters –  Each flagstone is…

02
Mar
2015

Codeforces 4A: Watermelon

It’s really easy problem..You will enjoy definitely #include<iostream> #include<cstdio> int main() { unsigned int weight,divide; while(scanf(“%u”,&weight)==1){ divide=weight%2;…