結果

問題 No.2201 p@$$w0rd
ユーザー ShirotsumeShirotsume
提出日時 2023-02-03 23:06:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,672 KB
実行使用メモリ 73,312 KB
最終ジャッジ日時 2024-07-02 21:11:19
合計ジャッジ時間 2,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
68,864 KB
testcase_01 AC 75 ms
71,808 KB
testcase_02 AC 73 ms
71,040 KB
testcase_03 AC 68 ms
69,120 KB
testcase_04 AC 72 ms
71,168 KB
testcase_05 AC 72 ms
71,552 KB
testcase_06 AC 72 ms
71,808 KB
testcase_07 AC 70 ms
69,376 KB
testcase_08 AC 72 ms
71,296 KB
testcase_09 AC 71 ms
71,040 KB
testcase_10 AC 76 ms
73,312 KB
testcase_11 AC 72 ms
70,656 KB
testcase_12 AC 74 ms
72,704 KB
testcase_13 AC 73 ms
72,876 KB
testcase_14 AC 68 ms
69,248 KB
testcase_15 AC 76 ms
72,704 KB
testcase_16 AC 73 ms
71,996 KB
testcase_17 AC 72 ms
71,040 KB
testcase_18 AC 70 ms
70,144 KB
testcase_19 AC 70 ms
69,632 KB
testcase_20 AC 70 ms
70,016 KB
testcase_21 AC 76 ms
72,960 KB
testcase_22 AC 69 ms
69,376 KB
testcase_23 AC 70 ms
70,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import string
import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

s = input()

S1 = set(string.ascii_lowercase)
S2 = set('0123456789')
ans = set()
for bit in range(1 << len(s)):
    s2 = []
    for i in range(len(s)):
        if 1 & (bit >> i):
            if s[i] == 'l':
                s2.append('1')
            elif s[i] == 'o':
                s2.append('0')
            elif s[i] == 'a':
                s2.append('@')
            elif s[i] == 's':
                s2.append('$')
            else:
                s2.append(s[i])
        else:
            s2.append(s[i])
    s3 = [v for v in s2 if v in S1]
    s4 = [v for v in s2 if v in S2]
    s5 = [v for v in s2 if v not in S2 and v not in S1]
    if len(s3) > 0 and len(s4) > 0 and len(s5) > 0:
        ans.add(tuple(s2))
print(len(ans))
        
0