标签:can namespace nbsp 容量 space 这一 pre acm hdu1495
Input三个整数 : S 可乐的体积 , N 和 M是两个杯子的容量,以"0 0 0"结束。Output如果能平分的话请输出最少要倒的次数,否则输出"NO"。Sample Input
7 4 3 4 1 3 0 0 0
Sample Output
NO 3
1 #include <iostream> 2 #include <cstring> 3 #include <cstdio> 4 using namespace std; 5 int gcd(int a,int b) 6 { 7 return b==0?a:gcd(b,a%b); 8 } 9 int main() 10 { 11 int x,y,z; 12 while(scanf("%d%d%d",&x,&y,&z)&&x+y+z) 13 { 14 x/=gcd(y,z); 15 if(x&1) 16 cout<<"NO"<<endl; 17 else 18 cout<<x-1<<endl; 19 } 20 return 0; 21 }
标签:can namespace nbsp 容量 space 这一 pre acm hdu1495
原文地址:http://www.cnblogs.com/--lr/p/7220700.html