結果

問題 No.473 和と積の和
ユーザー ctyl_0ctyl_0
提出日時 2016-11-17 18:28:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 1,116 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 598,528 KB
最終ジャッジ日時 2024-05-09 13:05:04
合計ジャッジ時間 8,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,256 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 2,637 ms
272,128 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 31 ms
11,264 KB
testcase_13 AC 31 ms
11,392 KB
testcase_14 AC 31 ms
11,264 KB
testcase_15 AC 29 ms
11,264 KB
testcase_16 AC 30 ms
11,264 KB
testcase_17 AC 30 ms
11,264 KB
testcase_18 AC 28 ms
11,008 KB
testcase_19 AC 29 ms
11,008 KB
testcase_20 AC 32 ms
11,264 KB
testcase_21 AC 28 ms
10,880 KB
testcase_22 AC 28 ms
11,008 KB
testcase_23 AC 62 ms
16,256 KB
testcase_24 AC 74 ms
17,536 KB
testcase_25 MLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(N):
    ret = []
    d = 1
    while d * d <= N:
        if N % d == 0:
            ret.append(d)
            if(d * d != N): ret.append(N / d)
        d += 1
    ret.sort()
    return ret

N, X = map(int, input().split())
D = divisors(X + 1)
M = {}

for i, d in enumerate(D):
    M[d] = i

dp = [[[-1 for i in range(32)] for j in range(len(D))] for j in range(len(D))]

def dec(n, m, k):
    if k >= 32: return 0
    if dp[n][m][k] >= 0: return dp[n][m][k]
    if k == 0:
        if D[n] == 1:
            dp[n][m][k] = 1
            return 1
        else:
            dp[n][m][k] = 0
            return 0
    if k == 1:
        if n >= m:
            dp[n][m][k] = 1
            return 1
        else:
            dp[n][m][k] = 0
            return 0
    ret = 0
    p = m
    while D[p] * D[p] <= D[n]:
        if D[n] % D[p] == 0:
            a = D[n]
            cnt = 1
            while a % D[p] == 0 and k >= cnt:
                a /= D[p]
                ret += dec(M[a], p + 1, k - cnt)
                cnt += 1
        p += 1
    dp[n][m][k] = ret
    return ret

print(dec(len(D) - 1, 1, N))
0