結果

問題 No.2201 p@$$w0rd
ユーザー lllllll88938494lllllll88938494
提出日時 2023-02-19 06:05:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 61,900 KB
最終ジャッジ日時 2024-07-20 09:19:11
合計ジャッジ時間 2,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,900 KB
testcase_01 AC 43 ms
59,576 KB
testcase_02 AC 44 ms
61,504 KB
testcase_03 AC 45 ms
59,584 KB
testcase_04 AC 45 ms
60,696 KB
testcase_05 AC 43 ms
59,304 KB
testcase_06 AC 48 ms
61,200 KB
testcase_07 AC 45 ms
59,456 KB
testcase_08 AC 43 ms
59,020 KB
testcase_09 AC 43 ms
60,244 KB
testcase_10 AC 46 ms
61,232 KB
testcase_11 AC 44 ms
60,424 KB
testcase_12 AC 45 ms
59,932 KB
testcase_13 AC 43 ms
59,984 KB
testcase_14 AC 44 ms
59,676 KB
testcase_15 AC 44 ms
59,676 KB
testcase_16 AC 45 ms
60,240 KB
testcase_17 AC 43 ms
59,040 KB
testcase_18 AC 44 ms
59,008 KB
testcase_19 AC 43 ms
59,044 KB
testcase_20 AC 43 ms
58,976 KB
testcase_21 AC 44 ms
60,716 KB
testcase_22 AC 43 ms
59,300 KB
testcase_23 AC 44 ms
59,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dic = {'l':'1','o':'0','a':'@','s':'$'}
from itertools import product
s = input()
ANS=set()
for p in product([0,1],repeat=len(s)):
    ss = list(s) 
    f = 0
    for i in range(len(p)):
        if p[i] == 1:
            if s[i] in dic:
                f = 1
                ss[i] = dic[s[i]]
    # print(''.join(ss),p)
    if f == 0:
        continue
    ans = [0,0,0]
    for j in ss:
        if j.isnumeric():
            ans[0] = 1
        elif j.isalpha():
            ans[1] = 1
        elif j == '@' or  j == '$':
            ans[2] = 1
    if all(ans):
        ANS.add(''.join(ss))
        

print(len(ANS))
                
            
    
0