Blue Bridge Cup 2018- provincial tournament -C / C ++ - A set of three questions

topic

Title: zero tail product

The following 10 rows, each row having 10 integers, you find at the end of their product is the number zero?

5650 4542 3554 473 946 4114 3871 9073 90 4329
2758 7949 6113 5659 5245 7432 3051 4434 6704 3594
9937 1173 6866 3397 4759 7557 3070 2287 1453 9899
1486 5722 3135 1170 4014 5510 5120 729 2880 9019
2049 698 4582 4346 4427 646 9742 7340 1230 7683
5693 7015 6887 7381 4172 4341 2909 2027 7355 5649
6701 6645 1671 5978 2704 9926 295 3125 3878 6785
2066 4247 4800 1578 6652 4616 1113 6205 3264 2915
3966 5291 2904 1285 2193 1428 2265 8730 9436 7074
689 5510 8243 6114 337 4096 8199 7313 3685 211

Note: You need to submit is an integer representing the number of zeros at the end. Do not fill out any extra content.

Code

. 1 #include <the iostream>
 2  the using  namespace STD;
 . 3  int DAT [ 100 + . 5 ];
 . 4  int main () {
 . 5      int A = 0 , B = 0 ;
 . 6      for ( int I = 0 ; I < 100 ; I ++ ) {
 . 7          CIN >> DAT [I]; 
 . 8      }
 . 9      for ( int I = 0 ; I < 100 ; I ++) { // 0 due to the presence of the end of 2 5 * generated 
10         while(dat[i]%2==0){
11             a++;
12             dat[i]/=2;
13            }
14         while(dat[i]%5==0){
15             b++;
16             dat[i]/=5;    
17         }
18        
19     }
20     cout<<((a>b)?b:a)<<endl;
21 } 

 

Guess you like

Origin www.cnblogs.com/memocean/p/12292338.html