-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuva10127Ones.cpp
More file actions
39 lines (34 loc) · 904 Bytes
/
uva10127Ones.cpp
File metadata and controls
39 lines (34 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include<bits/stdc++.h>
#define pb(n) push_back(n)
#define bug cout<<"bug";
#define all(c) c.begin(),c.end()
#define fr(i,n) for(i=0;i<n;i++)
#define sf(n) scanf("%d",&n)
#define mst(n) memset(n,0,sizeof(n))
#define nl printf("\n")
#define lli long long int
#define tr(container,it) \
for (auto it = container.begin(); it != container.end() ; ++it)
#define INF INT_MAX
#define mp(i,j) make_pair(i,j)
#define mstn(n) memset(n,-1,sizeof(n))
#define infile freopen("in.txt","r",stdin)
#define outfile freopen("out.txt","w",stdout)
#define V 1000001
#define pi acos(-1.0)
using namespace std;
int main()
{
int num;
while(scanf("%d",&num)!=EOF)
{
int digit=0,sum=0;
do
{
sum = (sum * 10)%num;
sum = (sum +1 )%num;
digit++;
}while(sum%num!=0);
printf("%d\n",digit);
}
}