結果

問題 No.2417 Div Count
ユーザー pありpあり
提出日時 2023-08-12 15:03:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 69,900 KB
最終ジャッジ日時 2024-11-19 23:02:55
合計ジャッジ時間 3,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,432 KB
testcase_01 AC 40 ms
53,932 KB
testcase_02 AC 40 ms
53,024 KB
testcase_03 AC 40 ms
52,940 KB
testcase_04 AC 40 ms
53,024 KB
testcase_05 AC 41 ms
52,540 KB
testcase_06 AC 42 ms
52,328 KB
testcase_07 AC 40 ms
53,440 KB
testcase_08 AC 40 ms
53,132 KB
testcase_09 AC 40 ms
52,068 KB
testcase_10 AC 41 ms
52,488 KB
testcase_11 AC 40 ms
53,020 KB
testcase_12 AC 41 ms
52,412 KB
testcase_13 AC 40 ms
52,752 KB
testcase_14 AC 40 ms
52,620 KB
testcase_15 AC 40 ms
52,908 KB
testcase_16 AC 40 ms
52,676 KB
testcase_17 AC 39 ms
52,200 KB
testcase_18 AC 40 ms
52,328 KB
testcase_19 AC 40 ms
52,400 KB
testcase_20 AC 43 ms
57,500 KB
testcase_21 AC 40 ms
52,200 KB
testcase_22 AC 40 ms
52,896 KB
testcase_23 AC 42 ms
57,852 KB
testcase_24 AC 42 ms
58,588 KB
testcase_25 AC 42 ms
57,880 KB
testcase_26 AC 44 ms
57,644 KB
testcase_27 AC 44 ms
59,428 KB
testcase_28 AC 42 ms
58,772 KB
testcase_29 AC 44 ms
58,776 KB
testcase_30 AC 44 ms
58,448 KB
testcase_31 AC 44 ms
57,716 KB
testcase_32 AC 48 ms
58,796 KB
testcase_33 AC 46 ms
58,120 KB
testcase_34 AC 45 ms
58,256 KB
testcase_35 AC 50 ms
58,056 KB
testcase_36 AC 48 ms
58,652 KB
testcase_37 AC 47 ms
57,760 KB
testcase_38 AC 78 ms
69,900 KB
testcase_39 AC 63 ms
66,212 KB
testcase_40 AC 54 ms
63,100 KB
testcase_41 AC 51 ms
61,328 KB
testcase_42 AC 40 ms
52,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr
  
n,k = map(int, input().split())


a = factorization(n-k)
#print(a)

if(n-k <= k):
  print(0)
  exit()
  

def f(now, i):
 
  if(i==len(a)):
    if(now <= k):
      return 0
    #print(now)
    return 1
    
  count = 0
  aa = 1
  for j in range(a[i][1]+1):
    count += f(now*aa, i+1)
    aa*=a[i][0]
  return count
    
    
ans = f(1, 0)

print(ans)
0