結果

問題 No.473 和と積の和
ユーザー ctyl_0ctyl_0
提出日時 2016-12-21 19:12:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-16 02:28:11
合計ジャッジ時間 13,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 982 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 33 ms
10,752 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 950 ms
10,752 KB
testcase_26 AC 653 ms
10,624 KB
testcase_27 AC 439 ms
10,752 KB
testcase_28 AC 31 ms
10,880 KB
testcase_29 AC 89 ms
10,624 KB
testcase_30 AC 97 ms
10,752 KB
testcase_31 AC 98 ms
10,624 KB
testcase_32 AC 99 ms
10,752 KB
testcase_33 AC 67 ms
10,624 KB
testcase_34 AC 335 ms
10,624 KB
testcase_35 WA -
testcase_36 AC 35 ms
10,752 KB
testcase_37 AC 86 ms
10,624 KB
testcase_38 AC 1,937 ms
10,752 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 34 ms
10,752 KB
testcase_43 AC 185 ms
10,752 KB
testcase_44 AC 835 ms
10,624 KB
testcase_45 AC 62 ms
10,752 KB
testcase_46 AC 35 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dec(n, m, k):
  if k == 0:
    if n == 1:
      return 1
    else:
      return 0
  if k == 1:
    if n >= m:
      return 1
    else:
      return 0
  if pow(n, 1.0 / k) < m:
    return 0
  ret = 0
  d = m
  while d * d <= n:
    if n % d == 0 :
      nn = n
      cnt = 1
      while nn % d == 0 and k >= cnt:
        nn /= d
        ret += dec(nn, d + 1, k - cnt)
        cnt += 1
    d += 1
  return ret

N, X = map(int, input().split())
print(dec(X + 1, 2, N))
0