Submission #2857765


Source Code Expand

num_list = input().split(" ")
num_list = list(map(lambda x: int(x), num_list))
N, A, B = num_list
out = 0

for n in range(1, N+1):
  n_sum = 0
  tmp_n = n
  
  while(True):    
    div, mod = divmod(tmp_n, 10)
    n_sum += mod
    if div == 0:
      break
    else:
      tmp_n = div
  
  if n_sum >= A and n_sum <= B:
    out += n
print(out)

Submission Info

Submission Time
Task B - Some Sums
User macaco1101
Language Python (3.4.3)
Score 200
Code Size 361 Byte
Status AC
Exec Time 33 ms
Memory 3064 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 11
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 33 ms 3064 KB
02.txt AC 23 ms 3064 KB
03.txt AC 33 ms 3060 KB
04.txt AC 32 ms 3060 KB
05.txt AC 30 ms 3060 KB
06.txt AC 30 ms 3060 KB
07.txt AC 31 ms 2940 KB
08.txt AC 28 ms 3064 KB
s1.txt AC 17 ms 3060 KB
s2.txt AC 17 ms 3060 KB
s3.txt AC 17 ms 2940 KB