結果

問題 No.473 和と積の和
ユーザー ctyl_0ctyl_0
提出日時 2016-11-17 18:28:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,116 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 664,200 KB
最終ジャッジ日時 2024-12-16 02:20:57
合計ジャッジ時間 22,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 1,075 ms
338,516 KB
testcase_04 AC 46 ms
56,832 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 43 ms
51,840 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 43 ms
52,352 KB
testcase_09 AC 48 ms
57,344 KB
testcase_10 AC 43 ms
51,968 KB
testcase_11 AC 47 ms
57,344 KB
testcase_12 AC 49 ms
59,136 KB
testcase_13 AC 49 ms
59,008 KB
testcase_14 AC 49 ms
58,752 KB
testcase_15 AC 50 ms
58,880 KB
testcase_16 AC 50 ms
59,136 KB
testcase_17 AC 50 ms
59,264 KB
testcase_18 AC 43 ms
52,224 KB
testcase_19 AC 42 ms
52,224 KB
testcase_20 AC 50 ms
59,136 KB
testcase_21 AC 43 ms
52,096 KB
testcase_22 AC 42 ms
52,096 KB
testcase_23 AC 88 ms
81,280 KB
testcase_24 AC 107 ms
81,664 KB
testcase_25 TLE -
testcase_26 AC 793 ms
285,056 KB
testcase_27 AC 959 ms
320,176 KB
testcase_28 AC 50 ms
59,904 KB
testcase_29 AC 68 ms
65,536 KB
testcase_30 AC 65 ms
64,512 KB
testcase_31 AC 65 ms
64,384 KB
testcase_32 AC 66 ms
64,640 KB
testcase_33 AC 52 ms
59,520 KB
testcase_34 AC 1,695 ms
367,228 KB
testcase_35 AC 1,789 ms
368,560 KB
testcase_36 AC 76 ms
68,992 KB
testcase_37 AC 51 ms
59,776 KB
testcase_38 AC 1,724 ms
367,248 KB
testcase_39 AC 886 ms
211,328 KB
testcase_40 AC 913 ms
211,316 KB
testcase_41 AC 332 ms
203,776 KB
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 AC 50 ms
58,496 KB
testcase_46 AC 49 ms
58,112 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