Category: Problem Solution

28
Jul
2015

URI Online Judge Solution |1038 Snack

Here I tried to write everything in standard C++ #include<iostream> #include<iomanip> using namespace std; int main() {…

26
Mar
2015

uva 10014 – Simple Calculations

This solution didn’t accurately done by me but i tried to understand how to solve it from…

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;…

02
Mar
2015

To Carry or not to Carry

Dont forget to use format specifier for unsigned int %u #include<iostream> #include<cstdio> int main() { unsigned int a,b,output;…

26
Feb
2015

11559 – Event Planning

By thinking 24 hr++ I have solved this problem.I got guidance from my friend M.H Riyad also..He…

17
Feb
2015

Uva 11498 – Division of Nlogonia

Solution actually simple…You have to think simple here is the cartesian co ordinate link check here then…