結果

問題 No.2201 p@$$w0rd
ユーザー ooaiuooaiu
提出日時 2024-07-10 07:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-07-10 07:58:18
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,880 KB
testcase_01 AC 44 ms
59,648 KB
testcase_02 AC 43 ms
58,880 KB
testcase_03 AC 44 ms
59,520 KB
testcase_04 AC 44 ms
60,160 KB
testcase_05 AC 49 ms
59,136 KB
testcase_06 AC 45 ms
60,288 KB
testcase_07 AC 44 ms
60,032 KB
testcase_08 AC 42 ms
58,624 KB
testcase_09 AC 43 ms
58,496 KB
testcase_10 AC 47 ms
60,288 KB
testcase_11 AC 45 ms
59,520 KB
testcase_12 AC 44 ms
59,904 KB
testcase_13 AC 42 ms
58,880 KB
testcase_14 AC 44 ms
59,264 KB
testcase_15 AC 46 ms
60,544 KB
testcase_16 AC 47 ms
60,544 KB
testcase_17 AC 42 ms
59,520 KB
testcase_18 AC 43 ms
59,392 KB
testcase_19 AC 43 ms
59,648 KB
testcase_20 AC 42 ms
58,880 KB
testcase_21 AC 45 ms
60,416 KB
testcase_22 AC 44 ms
60,544 KB
testcase_23 AC 42 ms
59,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

N = 8
loas = {"l", "o", "a", "s"}
ans = set()
for bit in range(1 << N):
  T = list(S[:])
  for i in range(N):
    if bit & (1 << i) and S[i] in loas:
      if S[i] == 'l':
        T[i] = '1'
      elif S[i] == 'o':
        T[i] = '0'
      elif S[i] == 'a':
        T[i] = '@'
      elif S[i] == 's':
        T[i] = '$'
  f, g, h = 0, 0, 0
  for i in range(N):
    if ord('a') <= ord(T[i]) <= ord('z'):
      f = 1
    elif ord('0') <= ord(T[i]) <= ord('9'):
      g = 1
    elif T[i] == '@' or T[i] == '$':
      h = 1
  if f and g and h:
    ans.add("".join(T))
print(len(ans))
0