結果

問題 No.1747 Many Formulae 2
ユーザー 👑 rin204rin204
提出日時 2021-12-13 01:33:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-07-21 15:10:40
合計ジャッジ時間 1,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 58 ms
66,688 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 40 ms
54,016 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 49 ms
62,592 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 41 ms
53,760 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 57 ms
67,328 KB
testcase_16 AC 52 ms
62,464 KB
testcase_17 AC 38 ms
52,480 KB
testcase_18 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isprime(n):
    if n <= 1:
        return False
    elif n == 2:
        return True
    elif n % 2 == 0:
        return False
    
    A = [2, 325, 9375, 28178, 450775, 9780504, 1795265022]
    s = 0
    d = n - 1
    while d % 2 == 0:
        s += 1
        d >>= 1
    
    for a in A:
        if a % n == 0:
            return True
        x = pow(a, d, n)
        if x != 1:
            for t in range(s):
                if x == n - 1:
                    break
                x = x * x % n
            else:
                return False
    return True
        

S = input()
se = set()
l = len(S) - 1
ans = 0
for bit in range(1 << l):
    eq = []
    for i, s in enumerate(S):
        eq.append(s)
        if bit >> i & 1:
            eq.append("+")
    if isprime(eval("".join(eq))):
        ans += 1

print(ans)
0