結果

問題 No.2201 p@$$w0rd
ユーザー n_nan_na
提出日時 2023-02-05 02:13:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 62,048 KB
最終ジャッジ日時 2024-07-03 20:27:23
合計ジャッジ時間 2,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,984 KB
testcase_01 AC 47 ms
60,464 KB
testcase_02 AC 43 ms
60,512 KB
testcase_03 AC 46 ms
60,252 KB
testcase_04 AC 46 ms
60,308 KB
testcase_05 AC 44 ms
61,596 KB
testcase_06 AC 45 ms
61,360 KB
testcase_07 AC 44 ms
60,340 KB
testcase_08 AC 44 ms
59,936 KB
testcase_09 AC 45 ms
60,048 KB
testcase_10 AC 45 ms
60,444 KB
testcase_11 AC 46 ms
61,264 KB
testcase_12 AC 46 ms
60,748 KB
testcase_13 AC 44 ms
60,460 KB
testcase_14 AC 44 ms
61,344 KB
testcase_15 AC 44 ms
60,508 KB
testcase_16 AC 46 ms
60,496 KB
testcase_17 AC 44 ms
62,048 KB
testcase_18 AC 44 ms
60,280 KB
testcase_19 AC 44 ms
61,268 KB
testcase_20 AC 44 ms
60,564 KB
testcase_21 AC 45 ms
61,464 KB
testcase_22 AC 45 ms
62,040 KB
testcase_23 AC 45 ms
60,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = 8

res = set()
for i in range(1<<N):
    pw = []
    for j in range(N):
        if (i>>j)&1 == 1:
            if S[j] == "l": pw.append("1")
            elif S[j] == "o": pw.append("0")
            elif S[j] == "a": pw.append("@")
            elif S[j] == "s": pw.append("$")
            else: pw.append(S[j])
        else:
            pw.append(S[j])
    p = "".join(pw)
    check = [False]*3
    for j in range(N):
        s = p[j]
        if s.isnumeric(): check[0] = True
        elif s.islower(): check[1] = True
        else: check[2] = True
    if check.count(True) == 3: res.add(p)
#    print(check)

print(len(res))
            
0