結果

問題 No.2201 p@$$w0rd
ユーザー tassei903tassei903
提出日時 2023-02-04 10:38:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 62,148 KB
最終ジャッジ日時 2024-07-03 09:16:45
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,104 KB
testcase_01 AC 39 ms
61,588 KB
testcase_02 AC 40 ms
61,000 KB
testcase_03 AC 39 ms
61,456 KB
testcase_04 AC 40 ms
61,748 KB
testcase_05 AC 41 ms
60,804 KB
testcase_06 AC 41 ms
61,248 KB
testcase_07 AC 40 ms
60,728 KB
testcase_08 AC 41 ms
61,160 KB
testcase_09 AC 39 ms
61,344 KB
testcase_10 AC 41 ms
60,652 KB
testcase_11 AC 42 ms
61,588 KB
testcase_12 AC 46 ms
62,148 KB
testcase_13 AC 40 ms
60,204 KB
testcase_14 AC 42 ms
59,860 KB
testcase_15 AC 42 ms
60,480 KB
testcase_16 AC 43 ms
61,940 KB
testcase_17 AC 41 ms
60,116 KB
testcase_18 AC 41 ms
60,552 KB
testcase_19 AC 40 ms
60,980 KB
testcase_20 AC 41 ms
60,568 KB
testcase_21 AC 43 ms
61,596 KB
testcase_22 AC 42 ms
60,868 KB
testcase_23 AC 41 ms
60,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
s = input()
ans = set()
n = len(s)
for p in range(1<<n):
    t = list(s)
    for i in range(n):
        if p >> i & 1 and s[i] == "l":
            t[i] = "1"
        if p >> i & 1 and s[i] == "o":
            t[i] = "0"
        if p >> i & 1 and s[i] == "a":
            t[i] = "@"
        if p >> i & 1 and s[i] == "s":
            t[i] = "$"
    a,b,c = 0, 0,0
    for i in range(n):
        if t[i] in "1234567890":
            c += 1
        if t[i] in "@$":
            a +=1 
    t = "".join(t)
    if 0 < c and 0 < a and a + c < n:
        ans.add(t)
print(len(ans))
0