2017年7月27日

NYOJ题目 458 小光棍数

摘要: #include<stdio.h>int main(){long long a,b;scanf("%lld",&a);while(a--){scanf("%lld",&b);printf("%lld\n",(b-1)*1000+471);}return 0;}//解题思路:发现一个数的三次方最后三位 阅读全文

posted @ 2017-07-27 10:46 残夜半梦 阅读(130) 评论(0) 推荐(0) 编辑

NYOJ 题目399 题目399 - 整除个数

摘要: 题目描述: 1、2、3… …n这n(0<n<=1000000000)个数中有多少个数可以被正整数b整除。 #include<stdio.h>int main(){ int n,b,i; while(scanf("%d %d",&n,&b)!=EOF) { int t; t=n/b; printf(" 阅读全文

posted @ 2017-07-27 10:19 残夜半梦 阅读(191) 评论(0) 推荐(0) 编辑

导航