結果
問題 | No.1747 Many Formulae 2 |
ユーザー |
![]() |
提出日時 | 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 |
ソースコード
S=input()import itertoolsA=list(itertools.product([0,1], repeat=len(S)-1))ans=0def factorization(n):arr = []temp = nfor i in range(2, int(-(-n**0.5//1))+1):if temp%i==0:cnt=0while temp%i==0:cnt+=1temp //= iarr.append([i, cnt])if temp!=1:arr.append([temp, 1])if arr==[]:arr.append([n, 1])return arrfor i in A:s=0n=int(S[0])for j in range(len(S)-1):if i[j]==1:n*=10n+=int(S[j+1])else:s+=nn=int(S[j+1])s+=nif len(factorization(s))==1:#print(factorization(s))a,b=factorization(s)[0]if a!=1 and b==1:ans+=1print(ans)