Two planets named Haha and Xixi in the universe and they were created with the universe beginning.
There is 7373 days in Xixi a year and 137137 days in Haha a year.
Now you know the days NN after Big Bang, you need to answer whether it is the first day in a year about the two planets.
Input
There are several test cases(about 55 huge test cases).
For each test, we have a line with an only integer N(0≤N)N(0≤N), the length of NN is up to 1000000010000000.
Output
For the i-th test case, output Case #i: , then output “YES” or “NO” for the answer.
Sample Input
10001
0
333
Sample Output
Case #1: YES
Case #2: YES
Case #3: NO
题目说是水题,但是一点也不水。
一看就想用Java大数来一发,但是内存超限。。
只能c++写模拟大数取模。
代码如下:
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s;
int kase=0;
while(cin>>s){
int len=s.length();
int num=0;
for(int i=0;i<len;i++){
num=num*10+s[i]-'0';
num=num%10001;
}
if(num==0) cout<<"Case #"<<++kase<<": "<<"YES"<<endl;
else cout<<"Case #"<<++kase<<": "<<"NO"<<endl;
}
return 0;
}
g++会tle,c++可以过。。
努力加油a啊,(o)/~
探讨了两个虚构宇宙行星Haha和Xixi的周期计算问题,通过C++模拟大数取模解决内存超限难题。

166

被折叠的 条评论
为什么被折叠?



