結果

問題 No.473 和と積の和
ユーザー convexineqconvexineq
提出日時 2021-03-31 05:36:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 3,000 ms
コード長 619 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-05-08 06:18:31
合計ジャッジ時間 6,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,096 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 46 ms
52,096 KB
testcase_03 AC 163 ms
63,744 KB
testcase_04 AC 44 ms
51,968 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 44 ms
51,968 KB
testcase_07 AC 43 ms
51,584 KB
testcase_08 AC 44 ms
51,712 KB
testcase_09 AC 43 ms
52,096 KB
testcase_10 AC 44 ms
51,712 KB
testcase_11 AC 52 ms
60,160 KB
testcase_12 AC 49 ms
58,496 KB
testcase_13 AC 50 ms
58,624 KB
testcase_14 AC 50 ms
59,008 KB
testcase_15 AC 51 ms
58,880 KB
testcase_16 AC 51 ms
59,392 KB
testcase_17 AC 54 ms
60,544 KB
testcase_18 AC 46 ms
51,840 KB
testcase_19 AC 44 ms
51,840 KB
testcase_20 AC 56 ms
61,568 KB
testcase_21 AC 43 ms
52,224 KB
testcase_22 AC 42 ms
52,224 KB
testcase_23 AC 56 ms
60,928 KB
testcase_24 AC 60 ms
61,696 KB
testcase_25 AC 429 ms
64,768 KB
testcase_26 AC 142 ms
63,488 KB
testcase_27 AC 186 ms
63,488 KB
testcase_28 AC 57 ms
61,312 KB
testcase_29 AC 58 ms
61,440 KB
testcase_30 AC 57 ms
61,184 KB
testcase_31 AC 56 ms
60,928 KB
testcase_32 AC 56 ms
61,056 KB
testcase_33 AC 56 ms
60,160 KB
testcase_34 AC 275 ms
63,744 KB
testcase_35 AC 267 ms
63,616 KB
testcase_36 AC 57 ms
61,696 KB
testcase_37 AC 56 ms
61,056 KB
testcase_38 AC 243 ms
63,488 KB
testcase_39 AC 146 ms
62,976 KB
testcase_40 AC 155 ms
62,976 KB
testcase_41 AC 313 ms
65,920 KB
testcase_42 AC 100 ms
64,640 KB
testcase_43 AC 141 ms
64,640 KB
testcase_44 AC 185 ms
64,256 KB
testcase_45 AC 53 ms
60,160 KB
testcase_46 AC 46 ms
56,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_list(N): #約数のリスト
    if N == 1: return [1]
    res = []
    for i in range(1,N):
        if i*i >= N: break
        if N%i == 0:
            res.append(i)
            res.append(N//i)
    if i*i == N: res.append(i)
    return sorted(res)

n,x = map(int,input().split())
x += 1
lst = divisor_list(x)
L = len(lst)
dp = [[0]*L for _ in range(n+1)]
dp[0][0] = 1
z = {d:di for di,d in enumerate(lst)}
for zd in range(1,L):
    d = lst[zd]
    for i in range(n):
        for j in range(L):
            if dp[i][j] and x%(lst[j]*d)==0:
                dp[i+1][z[lst[j]*d]] += dp[i][j]
print(dp[n][-1])
0