結果

問題 No.1747 Many Formulae 2
ユーザー ShirotsumeShirotsume
提出日時 2021-11-19 22:32:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 77,340 KB
最終ジャッジ日時 2024-06-10 09:43:34
合計ジャッジ時間 2,289 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,616 KB
testcase_01 AC 47 ms
56,964 KB
testcase_02 AC 59 ms
67,600 KB
testcase_03 AC 46 ms
56,572 KB
testcase_04 AC 69 ms
69,644 KB
testcase_05 AC 45 ms
56,968 KB
testcase_06 AC 47 ms
56,104 KB
testcase_07 AC 90 ms
77,248 KB
testcase_08 AC 46 ms
56,056 KB
testcase_09 AC 45 ms
55,524 KB
testcase_10 AC 46 ms
55,656 KB
testcase_11 AC 47 ms
56,332 KB
testcase_12 AC 47 ms
56,236 KB
testcase_13 AC 46 ms
55,596 KB
testcase_14 AC 46 ms
55,792 KB
testcase_15 AC 89 ms
77,340 KB
testcase_16 AC 78 ms
74,444 KB
testcase_17 AC 45 ms
55,464 KB
testcase_18 AC 47 ms
56,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import random
from collections import defaultdict
def is_prime(n):
    if n==2:
        return True
    if n==1 or n&1==0:
        return False
    d=(n-1)>>1
    while d&1==0:
        d>>=1

    for k in range(100):
        a=random.randint(1,n-1)
        t=d
        y=pow(a, t, n)
        while t!=n-1 and y!=1 and y!=n-1:
            y=(y*y)%n
            t<<=1
        if y!=n-1 and t&1==0:
            return False
    return True
s = list(input())
ans = 0
for i in range(2 ** (len(s) - 1)):
    x = 0
    now = int(s[0])
    for j in range(len(s) - 1):
        if 1 & (i >> j):
            x += now
            now = int(s[j + 1])
        else:
            now = 10 * now + int(s[j + 1])
    x += now
    now = 0
    if is_prime(x):
        ans += 1
print(ans)

0