結果

問題 No.1747 Many Formulae 2
ユーザー tamatotamato
提出日時 2021-11-19 21:24:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 70,172 KB
最終ジャッジ日時 2024-06-10 07:42:37
合計ジャッジ時間 1,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,952 KB
testcase_01 AC 37 ms
53,440 KB
testcase_02 AC 62 ms
70,172 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 44 ms
60,744 KB
testcase_05 AC 37 ms
53,216 KB
testcase_06 AC 37 ms
52,732 KB
testcase_07 AC 50 ms
63,784 KB
testcase_08 AC 37 ms
52,824 KB
testcase_09 AC 36 ms
53,344 KB
testcase_10 AC 41 ms
59,116 KB
testcase_11 AC 44 ms
60,000 KB
testcase_12 AC 38 ms
53,468 KB
testcase_13 AC 37 ms
52,816 KB
testcase_14 AC 36 ms
52,200 KB
testcase_15 AC 62 ms
68,376 KB
testcase_16 AC 49 ms
62,548 KB
testcase_17 AC 37 ms
52,648 KB
testcase_18 AC 37 ms
52,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    def is_prime(n):
        if n == 1:
            return 0
        res = 1
        for i in range(2, n-1):
            if i * i > n:
                break
            if n % i == 0:
                res = 0
        return res

    S = input().rstrip('\n')
    N = len(S)

    ans = 0
    for i in range(1 << (N - 1)):
        st = []
        for j in range(N-1):
            st.append(S[j])
            if i >> j & 1:
                st.append("+")
        st.append(S[-1])
        a = eval("".join(st))
        if is_prime(a):
            ans += 1
    print(ans)


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