結果

問題 No.2201 p@$$w0rd
ユーザー wesoweeenwesoweeen
提出日時 2023-03-14 12:32:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-18 07:59:24
合計ジャッジ時間 2,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 WA -
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 WA -
testcase_11 AC 28 ms
10,496 KB
testcase_12 WA -
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 28 ms
10,368 KB
testcase_15 WA -
testcase_16 AC 28 ms
10,496 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 30 ms
10,368 KB
testcase_20 AC 29 ms
10,368 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 28 ms
10,624 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 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