結果

問題 No.2201 p@$$w0rd
コンテスト
ユーザー wesoweeen
提出日時 2023-03-14 12:32:27
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 888 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 293 ms
コンパイル使用メモリ 21,280 KB
実行使用メモリ 15,740 KB
最終ジャッジ日時 2026-08-30 02:33:17
合計ジャッジ時間 3,957 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code



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 0
    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