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

The Number Off of FFF

时间:2014-10-04 19:07:37      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

hdu4727:http://acm.hdu.edu.cn/showproblem.php?pid=4727

题意:给你一个序列,每个数比前面一个数大一。如果不是大一,则输出这个位子,如果都是大一,则输出1.

题解:水题。

bubuko.com,布布扣
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<algorithm>
 4 #include<cstring>
 5 using namespace std;
 6 int n,temp,x,a[100003];
 7 int main(){
 8    int T,tt=1;
 9    scanf("%d",&T);
10    while(T--){
11         scanf("%d",&n);
12         for(int i=1;i<=n;i++)
13           scanf("%d",&a[i]);
14           int i;
15         for( i=1;i<n;i++){
16             if(a[i+1]-a[i]!=1)
17                 break;
18         }
19         if(i==n)printf("Case #%d: 1\n",tt++);
20         else
21             printf("Case #%d: %d\n",tt++,i+1);
22    }
23 }
View Code

 

The Number Off of FFF

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/chujian123/p/4006191.html

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