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
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#define _CRT_SECURE_NO_WARNINGS

#include <cstdio>
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <math.h>
#include <algorithm>
#include <vector>

typedef long long lLong;
typedef unsigned long uLong;
typedef unsigned long long ulLong;
typedef unsigned int uInt;
typedef unsigned char Byte;

using namespace std;

const int MAX_DEP = 20;

class Liczba
{
private:
	
	int _liczba[MAX_DEP];
	int _mnoznik = 1;
	int _pozycja = 0;
	lLong _liczbaNum;

	void Parsuj(lLong liczba)
	{	
		memset(_liczba, 0, sizeof(_liczba));		
		while (liczba > 0)
		{
			int l = liczba % 10;
			liczba = liczba / 10;
			if (l == 0)
				l = 1;
			_liczba[_pozycja++] = l;			
		}		
	}

public:
	Liczba(lLong liczba)
	{		
		_liczbaNum = liczba;
		Parsuj(liczba);
	}

	inline lLong Current()
	{
		return _liczbaNum;
	}
	inline void Next()
	{
		int carry = 1;
		lLong liczba = 0;
		lLong mnoz = 1;
		for (int i = 0; i < MAX_DEP && carry>0; i++)
		{
			auto l = _liczba[i];
			if (l < 9)
			{
				l++;				
				carry--;
			}
			else
			{
				l = 1;				
			}		
			_liczba[i]=l;
			if (i == 0)
			{
				liczba = l;
			}
			else
			{
				liczba = liczba+ l*mnoz;				
			}						
			mnoz *= 10;
		}			
		_liczbaNum = ((_liczbaNum / mnoz) * mnoz) + liczba;		
	}
	
	inline bool CzyPotyczkowa()
	{		
		auto cur = _liczbaNum;
		int pos = 0;
		for (int i = 0; i < MAX_DEP; i++)
		{
			if (_liczba[i] == 0)
				break;
			if (cur % _liczba[i] != 0)
				return false;
		}
		return true;		
	}
};


class PrzypadekTestowy
{
private:	
	FILE* _input;
	inline void Reset()
	{
	}

	inline void WczytajInt(int* value)
	{
		auto _ = fscanf(_input, "%d", value);
	}

	inline void WczytajlLong(lLong* value)
	{
		auto _ = fscanf(_input, "%lld", value);
	}

	inline void WczytajParelLong(lLong* value1, lLong* value2)
	{
		auto _ = fscanf(_input, "%lld %lld\n", value1, value2);
	}

	inline void WczytajPareInt(uInt* value1, uInt* value2)
	{
		auto _ = fscanf(_input, "%d %d\n", value1, value2);
	}

public:
	PrzypadekTestowy() :_input(stdin)
	{
	}
	PrzypadekTestowy(FILE* input)
	{
		_input = input;
	}

	inline void Wykonaj()
	{
		Reset();
		int n = 0;
		lLong l, r;
		WczytajParelLong(&l, &r);
		
		auto licz = Liczba(l);

		lLong result=0;		
		while (licz.Current() <= r)
		{
			if (licz.CzyPotyczkowa())
			{
				result++;				
			}
			licz.Next();			
		}		
		printf("%lld\n", result);
	}			
};

int main(int argc, char** argv)
{
	FILE* in = stdin;
	if (argc > 1)
	{
		in = fopen(argv[1], "rt");
		if (NULL == in)
		{
			in = stdin;
		}
	}

	PrzypadekTestowy* p = new PrzypadekTestowy(in);
	p->Wykonaj();
	fflush(in);
	fclose(in);
	delete(p);	
	return 0;
}