結果

問題 No.1747 Many Formulae 2
ユーザー ああいいああいい
提出日時 2022-01-20 22:06:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-11-24 07:22:33
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
83,584 KB
testcase_01 AC 101 ms
83,968 KB
testcase_02 AC 110 ms
87,552 KB
testcase_03 AC 108 ms
84,352 KB
testcase_04 AC 104 ms
84,864 KB
testcase_05 AC 99 ms
83,584 KB
testcase_06 AC 97 ms
84,352 KB
testcase_07 AC 104 ms
86,144 KB
testcase_08 AC 99 ms
83,968 KB
testcase_09 AC 99 ms
83,584 KB
testcase_10 AC 100 ms
83,712 KB
testcase_11 AC 103 ms
84,096 KB
testcase_12 AC 103 ms
83,968 KB
testcase_13 AC 101 ms
83,968 KB
testcase_14 AC 98 ms
83,840 KB
testcase_15 AC 110 ms
87,680 KB
testcase_16 AC 109 ms
87,040 KB
testcase_17 AC 99 ms
84,608 KB
testcase_18 AC 97 ms
83,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
l = list(map(int,list(S)))

C = 10 ** 6
dat = [0] * C

prime = set()
for i in range(2,C):
    if dat[i] == 0:
        prime.add(i)
        for j in range(2 * i,C,i):
            dat[j] = 1
import sys
if len(S) == 1:
    if int(S) in prime:
        print(1)
    else:
        print(0)
    exit()
def check(x):
    i = 2
    while i * i <= x:
        if x % i == 0:
            return False
        i += 1
    return True

N = len(S) - 1
ans = 0
for bit in range(1 << N):
    Sum = 0
    now = l[0]
    for j in range(N):
        mask = 1 << j
        if mask & bit:
            Sum += now
            now = l[j+1]
        else:
            now = now * 10 + l[j+1]
    Sum += now
    if check(Sum):
        ans += 1
print(ans)
0