結果

問題 No.1747 Many Formulae 2
ユーザー timitimi
提出日時 2021-11-19 21:36:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 66,308 KB
最終ジャッジ日時 2024-12-31 21:59:16
合計ジャッジ時間 1,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
import itertools
A=list(itertools.product([0,1], repeat=len(S)-1))
ans=0
def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
    if temp!=1:
        arr.append([temp, 1])
    if arr==[]:
        arr.append([n, 1])
    return arr


for i in A:
    s=0
    n=int(S[0])
    for j in range(len(S)-1):
        if i[j]==1:
            n*=10
            n+=int(S[j+1])
        else:
            s+=n
            n=int(S[j+1])
    s+=n 
    if len(factorization(s))==1:
        #print(factorization(s))
        a,b=factorization(s)[0]
        if a!=1 and b==1:
            ans+=1
print(ans)
0