#include <bits/stdc++.h>
using namespace std;
//------------------------------DEFINE------------------------------
//******************************************************************
#define IOS ios_base::sync_with_stdio(false); cin.tie(0),cout.tie(0)
#define ll long long
#define pb push_back
#define F first
#define S second
#define INF 1e18
#define all(v) (v).begin(),(v).end()
#define rall(v) (v).rbegin(),(v).rend()
#define pii pair<int,int>
#define pll pair<ll,ll>
#define OK cout<<"Ok"<<endl;
#define MOD (ll)(1e9+7)
#define endl "\n"
//******************************************************************
//----------------------------FUNCTION------------------------------
//******************************************************************
ll gcd(ll a,ll b){
if(a>b) swap(a,b);
if(a==0) return a+b;
return gcd(b%a,a);
}
ll lcm(ll a,ll b){
return a/gcd(a,b)*b;
}
bool is_prime(ll n){
ll k=sqrt(n);
if(n==2) return true;
if(n<2||n%2==0||k*k==n) return false;
for(int i=3;i<=k;i+=2){
if(n%i==0){
return false;
}
}
return true;
}
//*****************************************************************
//--------------------------MAIN-CODE------------------------------
const int mxn=1e6+5;
ll t=1,a,b,ans;
void solve(){
cin>>a>>b;
for(ll i=a;i<=b;i++){
bool q=true;;
ll k=i,a=-1,b=-1;
while(k>0){
int x=k%10;
if(x==a||x==b){
q=false;
break;
}
b=a;
a=x;
k/=10;
}
if(q){
ans++;
}
}
cout<<ans<<endl;
}
int main(){
IOS;
//cin>>t;
while(t--){
solve();
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
3 ms |
204 KB |
Output is correct |
4 |
Correct |
2 ms |
204 KB |
Output is correct |
5 |
Correct |
0 ms |
204 KB |
Output is correct |
6 |
Correct |
0 ms |
204 KB |
Output is correct |
7 |
Correct |
0 ms |
204 KB |
Output is correct |
8 |
Correct |
0 ms |
204 KB |
Output is correct |
9 |
Correct |
0 ms |
204 KB |
Output is correct |
10 |
Correct |
0 ms |
204 KB |
Output is correct |
11 |
Correct |
0 ms |
204 KB |
Output is correct |
12 |
Correct |
0 ms |
204 KB |
Output is correct |
13 |
Correct |
0 ms |
204 KB |
Output is correct |
14 |
Correct |
2 ms |
204 KB |
Output is correct |
15 |
Correct |
2 ms |
304 KB |
Output is correct |
16 |
Correct |
1 ms |
204 KB |
Output is correct |
17 |
Correct |
1 ms |
204 KB |
Output is correct |
18 |
Correct |
0 ms |
204 KB |
Output is correct |
19 |
Correct |
3 ms |
204 KB |
Output is correct |
20 |
Correct |
2 ms |
204 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
133 ms |
292 KB |
Output is correct |
2 |
Execution timed out |
1089 ms |
204 KB |
Time limit exceeded |
3 |
Execution timed out |
1088 ms |
204 KB |
Time limit exceeded |
4 |
Execution timed out |
1089 ms |
204 KB |
Time limit exceeded |
5 |
Execution timed out |
1091 ms |
204 KB |
Time limit exceeded |
6 |
Execution timed out |
1087 ms |
204 KB |
Time limit exceeded |
7 |
Correct |
59 ms |
328 KB |
Output is correct |
8 |
Correct |
42 ms |
292 KB |
Output is correct |
9 |
Correct |
74 ms |
204 KB |
Output is correct |
10 |
Correct |
103 ms |
288 KB |
Output is correct |
11 |
Correct |
133 ms |
288 KB |
Output is correct |
12 |
Correct |
841 ms |
288 KB |
Output is correct |
13 |
Correct |
162 ms |
204 KB |
Output is correct |
14 |
Execution timed out |
1080 ms |
204 KB |
Time limit exceeded |
15 |
Execution timed out |
1078 ms |
204 KB |
Time limit exceeded |
16 |
Execution timed out |
1078 ms |
204 KB |
Time limit exceeded |
17 |
Execution timed out |
1087 ms |
204 KB |
Time limit exceeded |
18 |
Execution timed out |
1086 ms |
204 KB |
Time limit exceeded |
19 |
Execution timed out |
1092 ms |
204 KB |
Time limit exceeded |
20 |
Execution timed out |
1091 ms |
204 KB |
Time limit exceeded |
21 |
Execution timed out |
1095 ms |
204 KB |
Time limit exceeded |
22 |
Execution timed out |
1089 ms |
204 KB |
Time limit exceeded |
23 |
Execution timed out |
1044 ms |
204 KB |
Time limit exceeded |
24 |
Execution timed out |
1097 ms |
204 KB |
Time limit exceeded |
25 |
Execution timed out |
1088 ms |
204 KB |
Time limit exceeded |
26 |
Execution timed out |
1087 ms |
204 KB |
Time limit exceeded |
27 |
Execution timed out |
1092 ms |
204 KB |
Time limit exceeded |
28 |
Execution timed out |
1091 ms |
204 KB |
Time limit exceeded |
29 |
Execution timed out |
1094 ms |
204 KB |
Time limit exceeded |
30 |
Execution timed out |
1091 ms |
204 KB |
Time limit exceeded |
31 |
Execution timed out |
1088 ms |
204 KB |
Time limit exceeded |
32 |
Execution timed out |
1085 ms |
204 KB |
Time limit exceeded |
33 |
Execution timed out |
1091 ms |
204 KB |
Time limit exceeded |
34 |
Execution timed out |
1078 ms |
204 KB |
Time limit exceeded |
35 |
Execution timed out |
1089 ms |
204 KB |
Time limit exceeded |
36 |
Execution timed out |
1090 ms |
204 KB |
Time limit exceeded |
37 |
Execution timed out |
1058 ms |
204 KB |
Time limit exceeded |
38 |
Execution timed out |
1088 ms |
204 KB |
Time limit exceeded |
39 |
Execution timed out |
1085 ms |
204 KB |
Time limit exceeded |
40 |
Execution timed out |
1081 ms |
204 KB |
Time limit exceeded |
41 |
Execution timed out |
1088 ms |
204 KB |
Time limit exceeded |
42 |
Execution timed out |
1088 ms |
204 KB |
Time limit exceeded |
43 |
Execution timed out |
1088 ms |
204 KB |
Time limit exceeded |
44 |
Execution timed out |
1091 ms |
204 KB |
Time limit exceeded |
45 |
Execution timed out |
1084 ms |
204 KB |
Time limit exceeded |