結果

問題 No.1747 Many Formulae 2
ユーザー kohei2019kohei2019
提出日時 2023-06-13 00:31:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 70,528 KB
最終ジャッジ日時 2024-06-11 23:56:53
合計ジャッジ時間 2,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,864 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 62 ms
70,528 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 44 ms
60,032 KB
testcase_05 AC 34 ms
52,608 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 47 ms
63,104 KB
testcase_08 AC 35 ms
52,864 KB
testcase_09 AC 33 ms
52,608 KB
testcase_10 AC 38 ms
58,112 KB
testcase_11 AC 39 ms
59,776 KB
testcase_12 AC 34 ms
52,480 KB
testcase_13 AC 34 ms
52,736 KB
testcase_14 AC 34 ms
52,864 KB
testcase_15 AC 59 ms
69,372 KB
testcase_16 AC 45 ms
62,336 KB
testcase_17 AC 33 ms
52,352 KB
testcase_18 AC 36 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(N):#素因数分解√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 #[素因数、個数]

S = list(input())
if S == ['1']:
    print(0)
    exit()
Np = len(S)-1
cnt = 0
for i in range(2**Np):
    ls = [S[0]]
    for j in range(Np):
        if (i >> j) & 1:
            ls.append('+')
        ls.append(S[1+j])
    ar = factorization(eval(''.join(ls)))
    if len(ar) == 1 and ar[0][1]==1:
        cnt += 1
print(cnt)

0