結果

問題 No.473 和と積の和
ユーザー ctyl_0ctyl_0
提出日時 2016-11-17 18:28:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 1,116 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 601,472 KB
最終ジャッジ日時 2024-12-16 02:24:14
合計ジャッジ時間 43,161 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 MLE -
testcase_02 AC 30 ms
16,256 KB
testcase_03 MLE -
testcase_04 AC 31 ms
16,128 KB
testcase_05 MLE -
testcase_06 AC 30 ms
16,128 KB
testcase_07 MLE -
testcase_08 AC 31 ms
16,256 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 32 ms
11,008 KB
testcase_13 AC 32 ms
11,136 KB
testcase_14 AC 33 ms
11,008 KB
testcase_15 AC 32 ms
11,136 KB
testcase_16 AC 33 ms
10,880 KB
testcase_17 AC 33 ms
10,880 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 32 ms
11,136 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 65 ms
16,000 KB
testcase_24 AC 77 ms
17,536 KB
testcase_25 TLE -
testcase_26 AC 2,120 ms
219,136 KB
testcase_27 AC 2,697 ms
253,824 KB
testcase_28 AC 37 ms
10,880 KB
testcase_29 AC 39 ms
11,136 KB
testcase_30 AC 37 ms
11,136 KB
testcase_31 AC 37 ms
11,136 KB
testcase_32 AC 38 ms
11,136 KB
testcase_33 AC 36 ms
11,008 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 40 ms
11,136 KB
testcase_37 AC 37 ms
11,136 KB
testcase_38 TLE -
testcase_39 AC 1,898 ms
143,744 KB
testcase_40 AC 1,933 ms
143,744 KB
testcase_41 AC 1,101 ms
143,744 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 37 ms
11,008 KB
testcase_46 MLE -
権限があれば一括ダウンロードができます

ソースコード

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