結果

問題 No.2201 p@$$w0rd
ユーザー meruuu61779999meruuu61779999
提出日時 2023-02-03 21:30:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-07-02 19:13:50
合計ジャッジ時間 2,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
64,128 KB
testcase_01 AC 62 ms
63,488 KB
testcase_02 AC 62 ms
63,872 KB
testcase_03 AC 61 ms
63,232 KB
testcase_04 AC 62 ms
63,744 KB
testcase_05 AC 62 ms
64,128 KB
testcase_06 AC 64 ms
64,120 KB
testcase_07 AC 62 ms
64,256 KB
testcase_08 AC 61 ms
63,616 KB
testcase_09 AC 61 ms
63,872 KB
testcase_10 AC 61 ms
64,072 KB
testcase_11 AC 62 ms
63,872 KB
testcase_12 AC 63 ms
64,768 KB
testcase_13 AC 61 ms
63,744 KB
testcase_14 AC 61 ms
64,056 KB
testcase_15 AC 63 ms
64,640 KB
testcase_16 AC 62 ms
64,000 KB
testcase_17 AC 62 ms
64,000 KB
testcase_18 AC 63 ms
64,128 KB
testcase_19 AC 62 ms
63,488 KB
testcase_20 AC 62 ms
63,872 KB
testcase_21 AC 63 ms
64,384 KB
testcase_22 AC 61 ms
64,256 KB
testcase_23 AC 62 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import string

inputs = sys.stdin.readline


def main():
    S = input()
    aP = [S]
    for i, s in enumerate(S):
        bP, aP = aP, []
        if s == 'l':
            for p in bP:
                aP.append(p)
                aP.append(p[:i] + '1' + p[i + 1:])
        elif s == 'o':
            for p in bP:
                aP.append(p)
                aP.append(p[:i] + '0' + p[i + 1:])
        elif s == 'a':
            for p in bP:
                aP.append(p)
                aP.append(p[:i] + '@' + p[i + 1:])
        elif s == 's':
            for p in bP:
                aP.append(p)
                aP.append(p[:i] + '$' + p[i + 1:])
        else:
            aP = bP[:]

    alp = string.ascii_lowercase
    ans = 0
    for s in aP:
        if '0' in s or '1' in s:
            if '@' in s or '$' in s:
                for al in alp:
                    if al in s:
                        ans += 1
                        break
    print(ans)


if __name__ == "__main__":
    main()
0