Category: ACM-ICPC

05
Feb
2016

Uva 12577 – Hajj-e-Akbar

#include<iostream> #include<cstring> #include<cstdio> using namespace std; int main(){ char ary[6]; int counter=0; while(1) { gets(ary); if(ary[0]==’*’) {…

05
Feb
2016

Uva 1124 – Celebrity jeopardy

#include<cstdio> int main() { char s[100]; while(gets(s)){ printf(“%s\n”,s); } return 0; }  

04
Feb
2016

URI Online Judge Solution | 1332 One-Two-Three | UVA 12289

Reference: https://github.com/deniscostadsc/playground/blob/master/uri/1332/1332.cpp Code: #include<cstdio> #include<cstring> using namespace std; int main() { int n; char s[6]; scanf(“%d”,&n); while(n–){ scanf(“%s”,&s);…

17
Dec
2015

Computer science – Not just for boys or geeks

02
Dec
2015

Computer Science Education Week 2015

http://cseweek.bdosn.org/posts/1/how-to-prepare-for-programming-contest

02
Dec
2015

What does it actually mean in an array limit 0≤A[i]≤10^10 ?

Its means that the value of A[i] must be remained between 0 to 10000000000