-
Notifications
You must be signed in to change notification settings - Fork 4
/
A_Giga_Tower.cpp
72 lines (69 loc) · 1.56 KB
/
A_Giga_Tower.cpp
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include<iostream>
#include<vector>
#include<algorithm>
#include<stack>
#include<map>
#include<set>
#include<stack>
#include<queue>
#include<cstring>
#include<string>
#include <utility>
#define int int64_t
#define vi vector<int>
#define vii vector<pair<int,int>>
#define vs vector<string>
#define vc vector<char>
#define vb vector<bool>
#define pb push_back
#define mp make_pair
#define vin(x,v) for(auto &x:v)cin>>x;
#define vout(x,v)for(auto x:v)cout<<x<<" ";
#define MEM(a, b) memset(a, (b), sizeof(a))
#define loop(i, j, k) for (int i=j ; i<k ; i+=1)
#define rloop(i, j, k) for (int i=j ; i>=k ; i-=1)
#define rep(i, j) loop(i, 0, j)
#define rrep(i, j) rloop(i, j, 0)
#define MP make_pair
#define INF (int)1e18
#define EPS 1e-18
#define PI 3.1415926535897932384626433832795
#define MOD 1000000007
using namespace std;
bool aalu(int n){
if(n<0)n*=-1;
bool check=false;
while(n){
int t=n%10;
if(t==8)check=true;
n/=10;
}
return check;
}
void solve(){
int n;cin>>n;
// cout<<aalu(-8);
bool check=true;
int temp=n;
rep(i,20){
if(aalu(n+i+1)){
cout<<i+1;
return;
}
}
}
signed main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);
//#ifndef ONLINE_JUDGE
//FOR GETTING INPUT FROM input.txt
//freopen("input.txt", "r", stdin);
//FOR GETTING INPUT FROM input.txt
//freopen("output.txt", "w", stdout);
// #endif
int t=1;
//cin>>t;
while(t--){
solve();
cout<<endl;
}
}