博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
A water problem HDU - 5832
阅读量:4135 次
发布时间:2019-05-25

本文共 886 字,大约阅读时间需要 2 分钟。

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
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

g++会tle,c++可以过。。

努力加油a啊,(o)/~

转载地址:http://qutvi.baihongyu.com/

你可能感兴趣的文章
nginx反代 499 502 bad gateway 和timeout
查看>>
linux虚拟机安装tar.gz版jdk步骤详解
查看>>
python实现100以内自然数之和,偶数之和
查看>>
python数字逆序输出及多个print输出在同一行
查看>>
苏宁产品经理面经
查看>>
百度产品经理群面
查看>>
去哪儿一面+平安科技二面+hr面+贝贝一面+二面产品面经
查看>>
element ui 弹窗在IE11中关闭时闪现问题修复
查看>>
vue 遍历对象并动态绑定在下拉列表中
查看>>
Vue动态生成el-checkbox点击无法选中的解决方法
查看>>
python __future__
查看>>
MySQL Tricks1
查看>>
python 变量作用域问题(经典坑)
查看>>
pytorch
查看>>
pytorch(三)
查看>>
ubuntu相关
查看>>
C++ 调用json
查看>>
nano中设置脚本开机自启动
查看>>
动态库调动态库
查看>>
Kubernetes集群搭建之CNI-Flanneld部署篇
查看>>