-
Notifications
You must be signed in to change notification settings - Fork 0
/
PIN.py
202 lines (196 loc) · 3.97 KB
/
PIN.py
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
def isRetarded(n, m):
if m == 1:
return True
if m == 2:
x = n % 10
n1 = n // 10
x1 = n1 % 10
if x <= x1:
return True
else:
return False
if m == 3:
x = n % 10
n1 = n // 10
x1 = n1 % 10
n2 = n1 // 10
x2 = n2 % 10
if x <= x1 <= x2:
return True
else:
return False
if m == 4:
x = n % 10
n1 = n // 10
x1 = n1 % 10
n2 = n1 // 10
x2 = n2 % 10
n3 = n2 // 10
x3 = n3 % 10
if x <= x1 <= x2 <= x3:
return True
else:
return False
if m == 5:
x = n % 10
n1 = n // 10
x1 = n1 % 10
n2 = n1 // 10
x2 = n2 % 10
n3 = n2 // 10
x3 = n3 % 10
n4 = n3 // 10
x4 = n4 % 10
if x <= x1 <= x2 <= x3 <= x4:
return True
else:
return False
if m == 6:
x = n % 10
n1 = n // 10
x1 = n1 % 10
n2 = n1 // 10
x2 = n2 % 10
n3 = n2 // 10
x3 = n3 % 10
n4 = n3 // 10
x4 = n4 % 10
n5 = n4 // 10
x5 = n5 % 10
if x <= x1 <= x2 <= x3 <= x4 <= x5:
return True
else:
return False
if m == 7:
x = n % 10
n1 = n // 10
x1 = n1 % 10
n2 = n1 // 10
x2 = n2 % 10
n3 = n2 // 10
x3 = n3 % 10
n4 = n3 // 10
x4 = n4 % 10
n5 = n4 // 10
x5 = n5 % 10
n6 = n5 // 10
x6 = n6 % 10
if x <= x1 <= x2 <= x3 <= x4 <= x5 <= x6:
return True
else:
return False
if m == 8:
x = n % 10
n1 = n // 10
x1 = n1 % 10
n2 = n1 // 10
x2 = n2 % 10
n3 = n2 // 10
x3 = n3 % 10
n4 = n3 // 10
x4 = n4 % 10
n5 = n4 // 10
x5 = n5 % 10
n6 = n5 // 10
x6 = n6 % 10
n7 = n6 // 10
x7 = n7 % 10
if x <= x1 <= x2 <= x3 <= x4 <= x5 <= x6 <= x7:
return True
else:
return False
if m == 9:
x = n % 10
n1 = n // 10
x1 = n1 % 10
n2 = n1 // 10
x2 = n2 % 10
n3 = n2 // 10
x3 = n3 % 10
n4 = n3 // 10
x4 = n4 % 10
n5 = n4 // 10
x5 = n5 % 10
n6 = n5 // 10
x6 = n6 % 10
n7 = n6 // 10
x7 = n7 % 10
n8 = n7 // 10
x8 = n8 % 10
if x <= x1 <= x2 <= x3 <= x4 <= x5 <= x6 <= x7 <= x8:
return True
else:
return False
if m == 10:
x = n % 10
n1 = n // 10
x1 = n1 % 10
n2 = n1 // 10
x2 = n2 % 10
n3 = n2 // 10
x3 = n3 % 10
n4 = n3 // 10
x4 = n4 % 10
n5 = n4 // 10
x5 = n5 % 10
n6 = n5 // 10
x6 = n6 % 10
n7 = n6 // 10
x7 = n7 % 10
n8 = n7 // 10
x8 = n8 % 10
n9 = n8 // 10
x9 = n9 % 10
if x <= x1 <= x2 <= x3 <= x4 <= x5 <= x6 <= x7 <= x8 <= x9:
return True
else:
return False
def isPrime(n):
if n <= 1:
return False
if n <= 3:
return True
if n % 2 == 0 or n % 3 == 0:
return False
i = 5
while i * i <= n:
if n % i == 0 or n % (i + 2) == 0:
return False
i = i + 6
return True
p = int(input("Pocet cifier: "))
d = 0
h = 0
if p == 2:
d = 10
h = 99
if p == 3:
d = 100
h = 999
if p == 4:
d = 1000
h = 9999
if p == 5:
d = 10000
h = 99999
if p == 6:
d = 100000
h = 999999
if p == 7:
d = 1000000
h = 9999999
if p == 8:
d = 10000000
h = 99999999
if p == 9:
d = 100000000
h = 999999999
if p == 10:
d = 1000000000
h = 9999999999
ls = []
for i in range(d, h):
if isPrime(i):
if isRetarded(i, p):
ls.append(i)
print(ls)