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

220 DIV2 B. Inna and Nine

时间:2014-11-28 20:09:50      阅读:428      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   使用   sp   

220 DIV2 B. Inna and Nine

input

369727

output

2

input

123456789987654321

output

1

题意:比如例子1:369727-->99727-->9997 , 369727-->99727-->9979

14545181例子2:14545181-->1945181-->194519-->19919,

         14545181-->1945181-->199181-->19991

但是:14545181-->149591这是错的

注意:使用__int64

bubuko.com,布布扣
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <cmath>
 4 #include <cstdlib>
 5 #include <iostream>
 6 #define M 100005
 7 char s[M];
 8 
 9 int main()
10 {
11     //freopen("in.txt","r",stdin);
12     while(~scanf("%s",s))
13     {
14         int i,n;
15         n=strlen(s);
16         __int64 ans=1;
17         for(i=0;i<n;i++)
18         {
19             if(s[i]-0+s[i+1]-0==9 && i+1<n)
20             {
21                 __int64 c=1;
22                 while(s[i]-0+s[i+1]-0==9)
23                 {
24                     c++;
25                     i++;
26                 }
27                 if(c%2==0)
28                 ans*=1;
29                 else
30                 ans*=(c/2+1);
31             }
32         }
33         printf("%I64d\n",ans);
34     }
35     return 0;
36 }
View Code

 

220 DIV2 B. Inna and Nine

标签:style   blog   http   io   ar   color   os   使用   sp   

原文地址:http://www.cnblogs.com/xuesen1995/p/4129264.html

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