HDU 1098 Ignatius's puzzle 也不大懂

Posted IKnowYou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1098 Ignatius's puzzle 也不大懂相关的知识,希望对你有一定的参考价值。

http://acm.hdu.edu.cn/showproblem.php?pid=1098

看了一下它们的思路,没完全明白,但是能写出来,大概可能也许就是这样做的吧。

 1 #include <iostream>
 2 using namespace std;
 3 typedef long long ll;
 4 
 5 int main() {
 6     ll k;
 7     while (cin>>k)
 8     {
 9         int flag = 0,a;
10         for ( a = 1; a <= 64; a++) {
11             if ((18 + k*a) % 65 == 0) {
12                 flag = 1;
13                 break;
14             }
15         }
16         if (flag==0)
17             cout << "no" << endl;
18         else
19             cout << a << endl;
20     }
21 }

 

以上是关于HDU 1098 Ignatius's puzzle 也不大懂的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1098 Ignatius's puzzle 也不大懂

HDU 1098 [Ignatius's puzzle] 数论

HDU - 1098 - Ignatius's puzzle - ax+by=c

hdu1098费马小定理

hdu 1028 Ignatius and the Princess III

hdu 1027 Ignatius and the Princess II