結果

問題 No.1747 Many Formulae 2
ユーザー ああいいああいい
提出日時 2022-01-20 22:06:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 88,748 KB
最終ジャッジ日時 2024-05-03 08:44:51
合計ジャッジ時間 2,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
85,960 KB
testcase_01 AC 81 ms
85,152 KB
testcase_02 AC 92 ms
87,760 KB
testcase_03 AC 82 ms
84,480 KB
testcase_04 AC 79 ms
84,808 KB
testcase_05 AC 79 ms
84,556 KB
testcase_06 AC 76 ms
84,720 KB
testcase_07 AC 82 ms
88,748 KB
testcase_08 AC 79 ms
85,076 KB
testcase_09 AC 78 ms
85,296 KB
testcase_10 AC 79 ms
84,788 KB
testcase_11 AC 78 ms
86,376 KB
testcase_12 AC 79 ms
85,640 KB
testcase_13 AC 79 ms
84,904 KB
testcase_14 AC 77 ms
85,660 KB
testcase_15 AC 87 ms
88,716 KB
testcase_16 AC 84 ms
87,596 KB
testcase_17 AC 78 ms
84,964 KB
testcase_18 AC 78 ms
85,812 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