码迷,mamicode.com
首页 > 其他好文 > 详细

hihocoder offer收割编程练习赛8 A

时间:2017-03-13 16:16:13      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:off   bool   logs   out   typedef   type   iostream   test   style   

思路:

乱搞。

实现:

 1 #include <iostream>
 2 #include <cstdio>
 3 using namespace std;
 4 
 5 typedef long long ll;
 6 ll l, d, f;
 7 int t;
 8 
 9 ll gcd(ll x, ll y)
10 {
11     return !y ? x : gcd(y, x % y);
12 }
13 
14 bool test(ll x, ll y, ll z)
15 {
16     return gcd(x, y) >= z;
17 }
18 
19 int main()
20 {
21     cin >> t;
22     while (t--)
23     {
24         cin >> l >> f >> d;
25         if (test(l, d, f))
26             cout << "YES" << endl;
27         else
28             cout << "NO" << endl;
29     }
30     return 0;
31 }

 

hihocoder offer收割编程练习赛8 A

标签:off   bool   logs   out   typedef   type   iostream   test   style   

原文地址:http://www.cnblogs.com/wangyiming/p/6542624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!