結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
66,304 KB
testcase_01 AC 62 ms
64,128 KB
testcase_02 AC 55 ms
61,568 KB
testcase_03 AC 75 ms
68,864 KB
testcase_04 AC 62 ms
64,512 KB
testcase_05 AC 67 ms
66,176 KB
testcase_06 AC 57 ms
62,208 KB
testcase_07 AC 70 ms
67,584 KB
testcase_08 AC 55 ms
62,592 KB
testcase_09 AC 53 ms
62,080 KB
testcase_10 AC 72 ms
68,096 KB
testcase_11 AC 71 ms
67,840 KB
testcase_12 AC 64 ms
65,408 KB
testcase_13 AC 62 ms
65,152 KB
testcase_14 AC 76 ms
69,376 KB
testcase_15 AC 72 ms
68,096 KB
testcase_16 AC 63 ms
64,896 KB
testcase_17 AC 74 ms
68,352 KB
testcase_18 AC 75 ms
69,760 KB
testcase_19 AC 71 ms
67,584 KB
testcase_20 AC 68 ms
65,920 KB
testcase_21 AC 76 ms
69,632 KB
testcase_22 AC 73 ms
68,352 KB
testcase_23 AC 70 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def f(s):
    if s == "l":
        return 1
    elif s == "o":
        return 0
    elif s == "a":
        return "@"
    elif s == "s":
        return "$"
    else:
        return s

def check(L):
    if "@" not in L and "$" not in L:
        return False
    D = defaultdict(int)
    for a in L:
        D[a] += 1
    val = 0
    for i in range(10):
        val += D[i]
    if val == 0:
        return False
    alp = "abcdefghijklmnopqrstuvwxyz"
    val = 0
    for i in alp:
        val += D[i]
    if val == 0:
        return False
    return True

S = list(input())
N = len(S)
SS = set()
for s in range(1 << N):
    temp = [None] * N
    for i in range(N):
        if (s >> i) & 1:
            temp[i] = S[i]
        else:
            temp[i] = f(S[i])
    if check(temp):
        SS.add(tuple(temp))
print(len(SS))
0