Submission #3227053


Source Code Expand

S=input()
l=len(S)
f=0
for x in range(l):
  for y in range(l):
    if x==y:
      continue
    else:
      if S[x]==S[y]:
        f=1
      else:
        continue
      
if f:
  print('no')
else:
  print('yes')

Submission Info

Submission Time
Task B - Varied
User ottotto
Language Python (3.4.3)
Score 200
Code Size 226 Byte
Status AC
Exec Time 17 ms
Memory 2940 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 13
Set Name Test Cases
Sample a01, a02, a03
All a01, a02, a03, b04, b05, b06, b07, b08, b09, b10, b11, b12, b13
Case Name Status Exec Time Memory
a01 AC 17 ms 2940 KB
a02 AC 17 ms 2940 KB
a03 AC 17 ms 2940 KB
b04 AC 17 ms 2940 KB
b05 AC 17 ms 2940 KB
b06 AC 17 ms 2940 KB
b07 AC 17 ms 2940 KB
b08 AC 17 ms 2940 KB
b09 AC 17 ms 2940 KB
b10 AC 17 ms 2940 KB
b11 AC 17 ms 2940 KB
b12 AC 17 ms 2940 KB
b13 AC 16 ms 2940 KB