結果

問題 No.473 和と積の和
ユーザー ctyl_0ctyl_0
提出日時 2016-12-22 00:33:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 3,000 ms
コード長 841 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,180 KB
最終ジャッジ日時 2024-05-09 13:52:01
合計ジャッジ時間 5,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 200 ms
76,684 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 38 ms
52,608 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 AC 38 ms
52,352 KB
testcase_16 AC 38 ms
52,352 KB
testcase_17 AC 37 ms
52,480 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 37 ms
52,480 KB
testcase_20 AC 37 ms
52,224 KB
testcase_21 AC 36 ms
52,608 KB
testcase_22 AC 38 ms
52,352 KB
testcase_23 AC 48 ms
61,568 KB
testcase_24 AC 44 ms
59,136 KB
testcase_25 AC 220 ms
76,324 KB
testcase_26 AC 157 ms
76,544 KB
testcase_27 AC 143 ms
76,288 KB
testcase_28 AC 41 ms
57,344 KB
testcase_29 AC 51 ms
63,360 KB
testcase_30 AC 54 ms
63,488 KB
testcase_31 AC 59 ms
65,536 KB
testcase_32 AC 52 ms
63,744 KB
testcase_33 AC 41 ms
57,984 KB
testcase_34 AC 112 ms
76,416 KB
testcase_35 AC 238 ms
76,708 KB
testcase_36 AC 40 ms
58,112 KB
testcase_37 AC 42 ms
58,112 KB
testcase_38 AC 363 ms
77,180 KB
testcase_39 AC 309 ms
76,832 KB
testcase_40 AC 241 ms
77,176 KB
testcase_41 AC 42 ms
58,112 KB
testcase_42 AC 43 ms
59,392 KB
testcase_43 AC 61 ms
63,744 KB
testcase_44 AC 120 ms
71,424 KB
testcase_45 AC 41 ms
57,856 KB
testcase_46 AC 40 ms
57,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

def dec(n, m, k):
  # print(n, m, k)
  if m >= len(D):
    return 0
  if k == 0:
    if n == 1:
      return 1
    else:
      return 0
  if k == 1:
    if n >= D[m]:
      return 1
    else:
      return 0
  if pow(n, 1.0 / k) + 0.00000001 < D[m]:
    return 0
  ret = 0
  d = int(m)
  while D[d] * D[d] <= n and d < len(D):
    if n % D[d] == 0 :
      nn = n
      cnt = 1
      while nn % D[d] == 0 and k >= cnt:
        nn /= D[d]
        ret += dec(nn, d + 1, k - cnt)
        cnt += 1 
    d += 1
  return ret


print(dec(X + 1, 0, N))
0