結果

問題 No.2201 p@$$w0rd
ユーザー wesoweeenwesoweeen
提出日時 2023-03-14 12:37:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 11,872 KB
実行使用メモリ 10,020 KB
最終ジャッジ日時 2023-10-18 11:35:59
合計ジャッジ時間 1,660 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,020 KB
testcase_01 AC 29 ms
10,020 KB
testcase_02 AC 30 ms
10,020 KB
testcase_03 AC 30 ms
10,020 KB
testcase_04 AC 30 ms
10,020 KB
testcase_05 AC 30 ms
10,020 KB
testcase_06 AC 29 ms
10,020 KB
testcase_07 AC 30 ms
10,020 KB
testcase_08 AC 30 ms
10,020 KB
testcase_09 AC 31 ms
10,020 KB
testcase_10 AC 30 ms
10,020 KB
testcase_11 AC 29 ms
10,020 KB
testcase_12 AC 30 ms
10,020 KB
testcase_13 AC 30 ms
10,020 KB
testcase_14 AC 29 ms
10,020 KB
testcase_15 AC 29 ms
10,020 KB
testcase_16 AC 29 ms
10,020 KB
testcase_17 AC 29 ms
10,020 KB
testcase_18 AC 29 ms
10,020 KB
testcase_19 AC 30 ms
10,020 KB
testcase_20 AC 30 ms
10,020 KB
testcase_21 AC 29 ms
10,020 KB
testcase_22 AC 29 ms
10,020 KB
testcase_23 AC 29 ms
10,020 KB
権限があれば一括ダウンロードができます

ソースコード

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