結果

問題 No.473 和と積の和
ユーザー ctyl_0ctyl_0
提出日時 2016-11-17 18:28:00
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,116 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 664,720 KB
最終ジャッジ日時 2024-05-09 13:03:48
合計ジャッジ時間 20,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 1,015 ms
338,136 KB
testcase_04 AC 42 ms
57,216 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 42 ms
57,728 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 44 ms
57,600 KB
testcase_12 AC 43 ms
59,520 KB
testcase_13 AC 43 ms
59,392 KB
testcase_14 AC 44 ms
59,368 KB
testcase_15 AC 44 ms
59,136 KB
testcase_16 AC 44 ms
59,136 KB
testcase_17 AC 44 ms
59,136 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 44 ms
59,392 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 38 ms
52,352 KB
testcase_23 AC 74 ms
81,748 KB
testcase_24 AC 92 ms
82,096 KB
testcase_25 MLE -
testcase_26 AC 727 ms
284,988 KB
testcase_27 AC 877 ms
320,296 KB
testcase_28 AC 45 ms
60,032 KB
testcase_29 AC 79 ms
66,048 KB
testcase_30 AC 56 ms
65,024 KB
testcase_31 AC 55 ms
64,768 KB
testcase_32 AC 56 ms
65,152 KB
testcase_33 AC 46 ms
60,160 KB
testcase_34 AC 1,687 ms
367,484 KB
testcase_35 AC 1,745 ms
368,688 KB
testcase_36 AC 69 ms
69,504 KB
testcase_37 AC 53 ms
60,160 KB
testcase_38 AC 1,655 ms
367,504 KB
testcase_39 AC 829 ms
211,576 KB
testcase_40 AC 895 ms
211,324 KB
testcase_41 AC 307 ms
203,776 KB
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 AC 45 ms
59,136 KB
testcase_46 AC 44 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

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