#include<bits/stdc++.h>
int main()
{
int m,b,n,a[4]={0,2,4,4},T,c=1;
scanf("%d",&T);
while(T--){
scanf("%d%d",&m,&n);
if(m==1||n==1)
b=m*n;
else if(m==2||n==2){
b=m==2?n:m;
b=(b/4)*4+a[b%4];
}
else
b=(int)ceil(m*n/2.0);
printf("Case %d: %d\n",c++,b);
}
return 0;
}
Tuesday, July 28, 2015
Subscribe to:
Post Comments (Atom)
Triathlon
Triathlon - CodeChef # include < bits/stdc++.h > using namespace std ; # define fi first # define se second # define mp ...
-
# include < bits/stdc++.h > using namespace std ; long long arry [ 100010 ] , segment [ 400050 ] ; void build ( long long ...
-
DQUERY MO’s Algorithm # include < bits/stdc++.h > using namespace std ; # define fi first # define se second # define ...
-
# include < bits/stdc++.h > using namespace std ; int main ( ) { int T , Ax , Ay , Bx , By , Cx , Cy , c = 1 , r ; // ...
No comments:
Post a Comment