noshin98

uva 10050r8

Jan 6th, 2017
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.65 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3.  
  4. int main()
  5. {
  6.     long long k,l,n,p,h[100],ans,found,j,t,i;
  7.     scanf("%lld",&t);
  8.  
  9.             while(t--)
  10.             {
  11.  
  12.             scanf("%lld%lld",&n,&p);
  13.             for(j=0;j<p;j++)
  14.  
  15.                 scanf("%lld",&h[j]);
  16.  
  17.             ans=0;
  18.             for(i=1;i<=n;i++)
  19.             {
  20.  
  21.                 if(i%7==6||i%7==0)
  22.                 continue;
  23.             found=0;
  24.             for(k=0;k<p;k++)
  25.                 if(i%h[k]==0)
  26.                 found=1;
  27.             if(found==1)
  28.                 ++ans;
  29.             }
  30.  
  31.                 printf("%lld\n",ans);
  32.         }
  33.  
  34.  
  35.         return 0;
  36.  
  37. }
Add Comment
Please, Sign In to add comment