結果

問題 No.278 連続する整数の和(2)
ユーザー 👑 KazunKazun
提出日時 2020-09-05 15:06:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 57,600 KB
最終ジャッジ日時 2024-05-06 09:49:01
合計ジャッジ時間 1,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 51 ms
57,472 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 39 ms
57,216 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 39 ms
57,344 KB
testcase_11 AC 40 ms
57,520 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 49 ms
57,600 KB
testcase_14 AC 39 ms
56,704 KB
testcase_15 AC 44 ms
57,344 KB
testcase_16 AC 42 ms
56,704 KB
testcase_17 AC 40 ms
57,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#素因数分解
def Prime_Factorization(N):
    if N<0:
        R=[[-1,1]]
    else:
        R=[]

    N=abs(N)
    k=2
    while k*k<=N:
        if N%k==0:
            C=0
            while N%k==0:
                C+=1
                N//=k
            R.append([k,C])
        k+=1

    if N!=1:
        R.append([N,1])
    if not R:
        R.append([N,1])

    return R

#約数のK乗和
def Divisor_Sigma(N,K=1):
    if N==1:
        return 1

    H=Prime_Factorization(N)

    R=1
    if K==0:
        for (_,e) in H:
            R*=(e+1)
    else:
        for (p,e) in H:
            R*=(p**((e+1)*K)-1)//(p**K-1)
    return R
#================================================
N=int(input())

if N%2:
    A=N
else:
    A=N//2

print(Divisor_Sigma(A))
0