博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
玲珑杯热身赛A--Alarm (找规律)
阅读量:5037 次
发布时间:2019-06-12

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

 

 

DESCRIPTION
Given a number sequence [3,7,22,45,116,...][3,7,22,45,116,...]. Please tell me the kk-th number.

 

INPUT
A number T (T<100)T (T<100) indicates the number of the input cases. Then for each case there only is one integer k (1≤k≤10000)k (1≤k≤10000).

 

OUTPUT
For each case, ouput the kk-th number of the sequence in one line.

 

SAMPLE INPUT
214

 

SAMPLE OUTPUT
345 题意很简单,就是找规律,通过规律我们可以发现:
 

 

然后打表就可以过啦~  

#include 
#include
#include
#include
#include
using namespace std;const int maxn=1000007;const int INF=0x3f3f3f3f;long long v[maxn], a[maxn], k;void Isprime(){ memset(v, 0, sizeof(v)); for(int i=2; i
View Code

 

转载于:https://www.cnblogs.com/daydayupacm/p/5742723.html

你可能感兴趣的文章
HTML5实践 -- iPhone Safari Viewport Scaling Bug
查看>>
一位数据挖掘成功人士 给 数据挖掘在读研究生 的建议
查看>>
Python3.6.0安装
查看>>
hdu1049
查看>>
H5项目常见问题及注意事项
查看>>
索尼(SONY) SVE1512S7C 把WIN8降成WIN7图文教程
查看>>
时间模块 && time datetime
查看>>
jquery自动生成二维码
查看>>
spring回滚数据
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>
【JavaScript】Write和Writeln的区别
查看>>
百度编辑器图片在线流量返回url改动
查看>>
我对你的期望有点过了
查看>>
微信小程序wx:key以及wx:key=" *this"详解:
查看>>
下拉框比较符
查看>>
2.2.5 因子的使用
查看>>
css选择器
查看>>
photoplus
查看>>
Python 拓展之推导式
查看>>