結果

問題 No.2201 p@$$w0rd
ユーザー wesoweeen
提出日時 2023-03-14 12:37:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-18 07:59:33
合計ジャッジ時間 1,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #



def check_num(string: str) -> bool:
    """
    Whether the input contains 'l' or 'o'.
    """
    return string.count("l") + string.count("o") > 0

def check_symbol(string: str) -> bool:
    """
    Whether the input contains 'a' or 's'.
    """
    return string.count("a") + string.count("s") > 0

def valid_draft(draft: str) -> bool:
    """
    Whether the input is valid or not.
    """
    return all([check_num(draft), check_symbol(draft)])

def count_patterns(string: str) -> int:
    """
    Sequence.
    """
    a = string.count("l") + string.count("o")
    b = string.count("a") + string.count("s")

    if a + b == 8:
        return (2 ** a - 1) * (2 ** b - 1) - 1
    else:
        return (2 ** a - 1) * (2 ** b - 1)

def main():
    draft = input()
    if not valid_draft(draft=draft):
        print(0)
    else:
        print(count_patterns(string=draft))
    
if __name__ == "__main__":
    main()
0