首页 > 代码库 > HDU 1597 find the nth digit
HDU 1597 find the nth digit
数学题。
弄懂了之久其实就是解一个一元二次方程 x*(x-1)/2=y 。如果y==0了。表明刚好是这个数。
不是的话,就x取大一位然后 y-n 再%9 。
不过记得 %9==0的时候是9。不会出现0。
#include<cstdio> #include<cstring> #include<string> #include<queue> #include<algorithm> #include<map> #include<stack> #include<iostream> #include<list> #include<set> #include<cmath> #define INF 0x7fffffff #define eps 1e-6 #define LL long long using namespace std; int main() { // freopen("in.txt","r",stdin); // freopen("2.txt","w",stdout); int t; scanf("%d",&t); while(t--) { LL n,m; scanf("%lld",&n); int x = int((sqrt(1.0 + 8.0*n) -1)/2); int y = int(n-x*(x+1)/2); if(y == 0)//刚好是 n*(n+1)/2 { if(int(x)%9 == 0) printf("9\n"); else printf("%d\n", int(x)%9); } else//在之间 { if(y%9 == 0) printf("9\n"); else printf("%d\n", y%9); } } }
HDU 1597 find the nth digit
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。