結果

問題 No.473 和と積の和
ユーザー ctyl_0ctyl_0
提出日時 2016-11-17 17:36:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 431 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-12-16 02:19:05
合計ジャッジ時間 36,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,000 KB
testcase_01 AC 32 ms
21,632 KB
testcase_02 AC 31 ms
17,576 KB
testcase_03 AC 1,345 ms
16,000 KB
testcase_04 AC 32 ms
16,000 KB
testcase_05 AC 32 ms
17,824 KB
testcase_06 AC 32 ms
16,128 KB
testcase_07 AC 32 ms
21,760 KB
testcase_08 AC 32 ms
15,872 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 33 ms
16,128 KB
testcase_11 AC 32 ms
21,504 KB
testcase_12 AC 32 ms
16,128 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 32 ms
10,624 KB
testcase_23 AC 35 ms
10,880 KB
testcase_24 AC 37 ms
10,752 KB
testcase_25 TLE -
testcase_26 AC 917 ms
10,752 KB
testcase_27 AC 1,354 ms
10,752 KB
testcase_28 AC 58 ms
10,752 KB
testcase_29 AC 134 ms
10,752 KB
testcase_30 AC 131 ms
10,752 KB
testcase_31 AC 125 ms
10,752 KB
testcase_32 AC 116 ms
10,880 KB
testcase_33 AC 68 ms
10,752 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 141 ms
10,752 KB
testcase_37 AC 87 ms
10,880 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 35 ms
10,752 KB
testcase_43 AC 187 ms
10,752 KB
testcase_44 AC 872 ms
10,752 KB
testcase_45 AC 65 ms
10,752 KB
testcase_46 AC 35 ms
21,504 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

  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