← Back to List

31520번: Champernowne Verification ↗

Solutions

Python 3
614 B | 614 chars
import sys
from math import sqrt, pi, sin, factorial, ceil, floor
from datetime import datetime, timedelta
# sys.setrecursionlimit(10**7)

BLANK = " "

# inp = input
inp = lambda : sys.stdin.readline().rstrip()
mii = lambda x = BLANK : [*map(int,inp().split(x))]
mfi = lambda x = BLANK : [*map(float,inp().split(x))]
ii = lambda : int(inp())
fi = lambda : float(inp())
p = print

  
def solve():
  s = inp()
  
  ret = ""
  
  for i in range(1, 13):
    ret += str(i)
    
    if s == ret:
      p(i)
      break
  else:
    p(-1)

if __name__ == "__main__":
  tc = 1

  for t in range(1, tc+1):
    ret = solve()