結果

問題 No.1747 Many Formulae 2
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-18 16:35:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-05-02 19:24:04
合計ジャッジ時間 1,861 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 53 ms
62,464 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 43 ms
52,864 KB
testcase_05 AC 40 ms
52,012 KB
testcase_06 AC 43 ms
52,352 KB
testcase_07 AC 49 ms
60,672 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 40 ms
52,992 KB
testcase_12 AC 40 ms
52,608 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 52 ms
62,848 KB
testcase_16 AC 49 ms
61,184 KB
testcase_17 AC 39 ms
52,736 KB
testcase_18 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from itertools import product
def isprime(n):
    if n < 2:
        return False
    if n == 2:
        return True
    if n % 2 == 0:
        return False
    for i in range(3, int(math.sqrt(n)) + 1, 2):
        if n % i == 0: return False
    return True
s=input()
cnt=0
for bit in product(range(2),repeat=len(s)-1):
    tmp=0
    now=int(s[0])
    for i in range(len(s)-1):
        if bit[i]==0:
            now=now*10+int(s[i+1])
        else:
            tmp+=now
            now=int(s[i+1])
    tmp+=now
    if isprime(tmp):
        cnt+=1
print(cnt)
0