| Task: | Lukuvälit |
| Sender: | TrixterTheTux |
| Submission time: | 2019-10-04 18:02:40 +0300 |
| Language: | Python2 (PyPy2) |
| Status: | READY |
| Result: | 36 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 12 |
| #2 | ACCEPTED | 24 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.04 s | 1, 2, 3 | details |
| #2 | ACCEPTED | 0.04 s | 1, 2, 3 | details |
| #3 | ACCEPTED | 0.04 s | 1, 2, 3 | details |
| #4 | ACCEPTED | 0.04 s | 1, 2, 3 | details |
| #5 | ACCEPTED | 0.04 s | 1, 2, 3 | details |
| #6 | ACCEPTED | 0.08 s | 1, 2, 3 | details |
| #7 | ACCEPTED | 0.10 s | 1, 2, 3 | details |
| #8 | ACCEPTED | 0.07 s | 1, 2, 3 | details |
| #9 | ACCEPTED | 0.08 s | 1, 2, 3 | details |
| #10 | ACCEPTED | 0.07 s | 1, 2, 3 | details |
| #11 | ACCEPTED | 0.09 s | 1, 2, 3 | details |
| #12 | ACCEPTED | 0.04 s | 1, 2, 3 | details |
| #13 | ACCEPTED | 0.27 s | 2, 3 | details |
| #14 | ACCEPTED | 0.34 s | 2, 3 | details |
| #15 | ACCEPTED | 0.49 s | 2, 3 | details |
| #16 | ACCEPTED | 0.68 s | 2, 3 | details |
| #17 | ACCEPTED | 0.32 s | 2, 3 | details |
| #18 | ACCEPTED | 0.45 s | 2, 3 | details |
| #19 | ACCEPTED | 0.04 s | 2, 3 | details |
| #20 | ACCEPTED | 0.04 s | 2, 3 | details |
| #21 | RUNTIME ERROR | 0.25 s | 3 | details |
| #22 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #23 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #24 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #25 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #26 | RUNTIME ERROR | 0.25 s | 3 | details |
| #27 | RUNTIME ERROR | 0.38 s | 3 | details |
| #28 | RUNTIME ERROR | 0.25 s | 3 | details |
Code
import itertools
import math
# import random
# import time
cache = dict()
def get_products(len):
if len in cache:
return cache[len]
products = itertools.product(['0', '1'], repeat=len)
res = list(map(lambda x: int(''.join(x)), products))
cache[len] = res
return res
def decide_step(dist, b):
if dist <= 1 or b <= 10000:
return 1
if b > 10000000:
return pow(2, 18-len(str(b)))
return max(1, int(math.floor(math.log(dist))))
def solve(a, b):
str_len = len(str(b))
products = get_products(str_len)
products_len = len(products)
biggest_num = int('1' * str_len)
b = min(b, biggest_num)
try:
startIndex = 0
step = decide_step(a, b)
# print('start with start step {}'.format(step))
while products[startIndex] < a:
startIndex = min(products_len - 1, startIndex + step)
if startIndex + 1 == products_len:
break
step = decide_step(abs(a - products[startIndex]), b)
# print('new start step is {}, cur index is {}'.format(step, startIndex))
while startIndex > 0 and products[startIndex] >= a:
startIndex -= 1
if products[startIndex] < a:
startIndex += 1
endIndex = -1
step = decide_step(b, b)
# print('start with end step {}'.format(step))
# print(products[endIndex], b)
if products[endIndex] > b:
while products[endIndex] > b:
endIndex = max(-products_len + 1, endIndex - step)
# print('new end step: {}'.format(endIndex))
if endIndex - 1 == -products_len:
break
step = decide_step(abs(b - products[endIndex]), b)
# print('new end step is {}'.format(step))
# print(products[endIndex], b)
while endIndex < 0 and products[endIndex] <= b:
# print('we need to go BACK: {}, {}'.format(endIndex, products[endIndex]))
endIndex += 1
else:
endIndex = products_len
# print(a, b)
# print(products_len, startIndex, endIndex)
# print(products)
# print(products[startIndex:endIndex])
return products_len + min(0, endIndex) - startIndex
except IndexError:
return 0
# def slowsolve(a, b):
# count = 0
# # res = list()
# for x in range(a, b):
# if all(val == '1' or val == '0' for val in set(str(x))):
# count += 1
# # res.append(x)
# # print(res)
# return count
# for x in range(0, 10000):
# a = random.randint(pow(10, 1), pow(10, random.randint(3, 5)))
# b = random.randint(pow(10, 5), pow(10, 8))
# start = time.time()
# our_solution = solve(a, b + 1)
# print('our solution for [{}, {}]: {} ({}s)'.format(a, b, our_solution, str(time.time() - start)))
# start = time.time()
# slow_solution = slowsolve(a, b)
# print('slow solution: {} ({}s)'.format(slow_solution, str(time.time() - start)))
# if our_solution != slow_solution:
# break
count = int(raw_input())
for x in range(0, count):
a, b = [int(x) for x in raw_input().split()]
print(solve(a, b))Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 4 0 10 1 5 3 4 11 11 |
| correct output |
|---|
| 3 1 0 1 |
| user output |
|---|
| 3 1 0 1 |
Test 2
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1 0 0 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 3
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1 1000 1000 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 4
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 16 0 0 0 1 0 2 1 1 ... |
| correct output |
|---|
| 1 2 2 1 1 ... |
| user output |
|---|
| 1 2 2 1 1 ... |
Test 5
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 9 0 0 0 1 0 10 0 11 ... |
| correct output |
|---|
| 1 2 3 4 5 ... |
| user output |
|---|
| 1 2 3 4 5 ... |
Test 6
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 0 1000 0 1000 0 1000 0 1000 ... |
| correct output |
|---|
| 9 9 9 9 9 ... |
| user output |
|---|
| 9 9 9 9 9 ... Truncated |
Test 7
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 100 111 0 101 1 10 10 110 ... |
| correct output |
|---|
| 4 6 2 5 8 ... |
| user output |
|---|
| 4 6 2 5 8 ... Truncated |
Test 8
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 480 564 753 988 479 909 32 973 ... |
| correct output |
|---|
| 0 0 0 4 0 ... |
| user output |
|---|
| 0 0 0 4 0 ... Truncated |
Test 9
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 98 111 8 111 98 111 111 113 ... |
| correct output |
|---|
| 4 6 4 1 7 ... |
| user output |
|---|
| 4 6 4 1 7 ... Truncated |
Test 10
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 0 0 1 1 2 2 3 3 ... |
| correct output |
|---|
| 1 1 0 0 0 ... |
| user output |
|---|
| 1 1 0 0 0 ... Truncated |
Test 11
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 0 1000 0 999 1 1000 0 998 ... |
| correct output |
|---|
| 9 8 8 8 7 ... |
| user output |
|---|
| 9 8 8 8 7 ... Truncated |
Test 12
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1 0 1000 |
| correct output |
|---|
| 9 |
| user output |
|---|
| 9 |
Test 13
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 100000 0 100000 0 100000 0 100000 0 100000 ... |
| correct output |
|---|
| 33 33 33 33 33 ... |
| user output |
|---|
| 33 33 33 33 33 ... Truncated |
Test 14
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 100000 86042 98295 30077 80920 45856 67174 3890 60412 ... |
| correct output |
|---|
| 0 0 0 16 0 ... |
| user output |
|---|
| 0 0 0 16 0 ... Truncated |
Test 15
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 100000 11 10000 1111 11000 1011 1100 1110 1111 ... |
| correct output |
|---|
| 14 10 2 2 8 ... |
| user output |
|---|
| 14 10 2 2 8 ... Truncated |
Test 16
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 100000 9 9999 1109 1110 112 1012 11098 11101 ... |
| correct output |
|---|
| 14 1 4 2 6 ... |
| user output |
|---|
| 14 1 4 2 6 ... Truncated |
Test 17
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 100000 0 0 1 1 2 2 3 3 ... |
| correct output |
|---|
| 1 1 0 0 0 ... |
| user output |
|---|
| 1 1 0 0 0 ... Truncated |
Test 18
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 100000 0 100000 0 99999 1 100000 0 99998 ... |
| correct output |
|---|
| 33 32 32 32 31 ... |
| user output |
|---|
| 33 32 32 32 31 ... Truncated |
Test 19
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 3 99999 99999 99999 100000 100000 100000 |
| correct output |
|---|
| 0 1 1 |
| user output |
|---|
| 0 1 1 |
Test 20
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1 0 100000 |
| correct output |
|---|
| 33 |
| user output |
|---|
| 33 |
Test 21
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 0 1000000000000000000 0 1000000000000000000 0 1000000000000000000 0 1000000000000000000 ... |
| correct output |
|---|
| 262145 262145 262145 262145 262145 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 109, in <module>
print...Test 22
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 179926689319432205 25677963778... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| (empty) |
Test 23
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100110100011010101 11100011010... |
| correct output |
|---|
| 74822 54944 140968 252594 23521 ... |
| user output |
|---|
| (empty) |
Test 24
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100110100011010102 11100011010... |
| correct output |
|---|
| 74822 252594 94086 10836 11352 ... |
| user output |
|---|
| (empty) |
Test 25
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 256779637786129463 25677963778... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| (empty) |
Test 26
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 0 1000000000000000000 0 999999999999999999 1 1000000000000000000 0 999999999999999998 ... |
| correct output |
|---|
| 262145 262144 262144 262144 262143 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 109, in <module>
print...Test 27
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 3 999999999999999999 99999999999... |
| correct output |
|---|
| 0 1 1 |
| user output |
|---|
| 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 109, in <module>
print...Test 28
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 1 0 1000000000000000000 |
| correct output |
|---|
| 262145 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 109, in <module>
print...