Result

WA

Duration

506ms

Code [DL]

v=input()
for i in (0,26):
 if v[i]>='a' :
  print("1")
 else :
  print("0")

stdin

AbCdEfGhiJkLMNoPQRsTuvwXYZ

stdout

0

stderr

Traceback (most recent call last):
  File "/volume/CODE", line 3, in <module>
    if v[i]>='a' :
IndexError: string index out of range

strace

12    execve("/bin/sh", ["/bin/sh", "/root/script", "/volume/CODE"], 0x7ffe42fbd908 /* 7 vars */) = 0
14    execve("/usr/bin/python3", ["/usr/bin/python3", "/volume/CODE"], 0x7f20790c1250 /* 7 vars */ <unfinished ...>
13    execve("/bin/cat", ["cat", "-"], 0x7f20790c1238 /* 7 vars */) = 0
14    <... execve resumed>)             = 0
13    +++ exited with 0 +++
12    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=13, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
14    +++ exited with 1 +++
12    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=14, si_uid=0, si_status=1, si_utime=1, si_stime=0} ---
12    +++ exited with 1 +++