Advertisement
Infernale

Candy

Nov 4th, 2018
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.49 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main(){
  5.     int tc,in,count,res;
  6.     scanf("%d",&tc);
  7.     for(int i=1;i<=tc;i++){
  8.         count = 0;
  9.         scanf("%d",&in);
  10.         bool flag[500001] = {0};
  11.         for(int j=1;j<=sqrt(in);j++){
  12.             if(flag[j]){
  13.                 continue;
  14.             }
  15.             if(in%j==0){
  16.                 int n = in/j;
  17.                 if(n>500000){
  18.                     flag[j] = true;
  19.                     count+=2;
  20.                 }else{
  21.                     flag[n] = true;
  22.                     flag[j] = true;
  23.                     count+=(j==n?1:2);
  24.                 }
  25.             }
  26.         }
  27.         printf("Case #%d: %d\n",i,count);
  28.     }
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement