結果

問題 No.1747 Many Formulae 2
ユーザー tamatotamato
提出日時 2021-11-19 21:24:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 83,072 KB
実行使用メモリ 68,608 KB
最終ジャッジ日時 2024-06-10 07:41:52
合計ジャッジ時間 1,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 32 ms
52,224 KB
testcase_02 AC 54 ms
68,608 KB
testcase_03 AC 34 ms
52,736 KB
testcase_04 AC 37 ms
59,776 KB
testcase_05 AC 32 ms
52,736 KB
testcase_06 AC 31 ms
52,736 KB
testcase_07 AC 42 ms
62,208 KB
testcase_08 AC 33 ms
52,864 KB
testcase_09 AC 32 ms
52,736 KB
testcase_10 AC 35 ms
57,856 KB
testcase_11 AC 37 ms
60,544 KB
testcase_12 AC 34 ms
52,736 KB
testcase_13 AC 33 ms
52,096 KB
testcase_14 AC 34 ms
52,480 KB
testcase_15 AC 54 ms
68,096 KB
testcase_16 AC 44 ms
62,336 KB
testcase_17 AC 32 ms
52,608 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

    def is_prime(n):
        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