码迷,mamicode.com
首页 > 其他好文 > 详细

17西安网络赛

时间:2017-09-16 20:23:32      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:++   opened   技术   href   using   printf   技术分享   can   targe   

 

 C. Sum

一开始以为是数论(最近碰到过相似的),看大家都那么快过有点懵逼...然后队友搞过了~

技术分享
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 const int maxn=1010;
 4 int a[maxn];
 5 
 6 int main(){
 7     int t;
 8     scanf("%d",&t);
 9     while(t--){
10         int x;
11         scanf("%d",&x);
12         int pos=0;
13         while(x){
14             a[pos++]=x%10;
15             x/=10;
16         }
17         for(int i = 1; i < 233; i++){
18             printf("1");
19             for(int j = 1; j < pos; j++){
20                 printf("0");
21             }
22         }
23         puts("1");
24     }
25     return 0;
26 }
View Code

 

17西安网络赛

标签:++   opened   技术   href   using   printf   技术分享   can   targe   

原文地址:http://www.cnblogs.com/yijiull/p/7532217.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!