結果

問題 No.1383 Numbers of Product
ユーザー convexineqconvexineq
提出日時 2021-02-09 18:26:13
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,015 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 243,852 KB
最終ジャッジ日時 2024-09-14 02:42:37
合計ジャッジ時間 22,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 45 ms
53,760 KB
testcase_06 AC 45 ms
54,272 KB
testcase_07 AC 472 ms
171,528 KB
testcase_08 AC 535 ms
171,672 KB
testcase_09 AC 513 ms
207,368 KB
testcase_10 AC 777 ms
243,348 KB
testcase_11 AC 770 ms
242,988 KB
testcase_12 AC 765 ms
243,212 KB
testcase_13 AC 859 ms
242,956 KB
testcase_14 AC 639 ms
208,452 KB
testcase_15 AC 518 ms
172,064 KB
testcase_16 AC 752 ms
243,336 KB
testcase_17 AC 46 ms
54,272 KB
testcase_18 AC 45 ms
53,504 KB
testcase_19 AC 45 ms
53,888 KB
testcase_20 AC 45 ms
53,504 KB
testcase_21 AC 46 ms
54,144 KB
testcase_22 AC 46 ms
53,632 KB
testcase_23 AC 45 ms
54,144 KB
testcase_24 AC 45 ms
53,504 KB
testcase_25 AC 45 ms
53,504 KB
testcase_26 AC 45 ms
53,760 KB
testcase_27 AC 47 ms
54,528 KB
testcase_28 AC 77 ms
77,568 KB
testcase_29 AC 609 ms
207,880 KB
testcase_30 AC 773 ms
243,596 KB
testcase_31 AC 44 ms
53,760 KB
testcase_32 AC 170 ms
98,312 KB
testcase_33 AC 46 ms
53,888 KB
testcase_34 AC 52 ms
60,928 KB
testcase_35 AC 600 ms
224,780 KB
testcase_36 AC 779 ms
224,656 KB
testcase_37 AC 872 ms
243,728 KB
testcase_38 AC 766 ms
243,468 KB
testcase_39 AC 662 ms
243,212 KB
testcase_40 AC 655 ms
242,956 KB
testcase_41 AC 845 ms
243,468 KB
testcase_42 AC 749 ms
243,468 KB
testcase_43 AC 887 ms
243,852 KB
testcase_44 AC 676 ms
243,212 KB
testcase_45 AC 773 ms
243,468 KB
testcase_46 AC 45 ms
53,760 KB
testcase_47 AC 762 ms
243,344 KB
testcase_48 AC 753 ms
243,460 KB
testcase_49 AC 758 ms
243,336 KB
testcase_50 AC 912 ms
243,348 KB
testcase_51 WA -
testcase_52 AC 45 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
n,k,m = map(int,input().split())
fk = float(k)

def val(a,s):
    v = float(a)
    for i in range(1,s):
        v *= a+i*fk
        if v > 2e18: return 2000000000000000000
    w = a
    for i in range(1,s):
        w *= a+i*k
    return w

from collections import Counter
d = Counter()
for s in range(3,100):
    if val(1,s) > n: break
    for a in range(1,10**6+1):
        x = val(a,s)
        if x <= n: d[x] += 1
        else: break

def check(x): # a(a+k) = x なる a ある?
    v = int((sqrt(float(k)**2 + 4.0*x) - k)/2)
    for a in range(max(1,v-3),v+5):
        if a >= 1 and a*(a+k)==x: return True
        if a*(a+k) > x: return False
    return False

ans = 0
for x,v in d.items():
    if v == m and not check(x):
        ans += 1
    elif v == m-1 and check(x):
        ans += 1

if m == 1:
    v = int((sqrt(float(k)**2 + 4.0*n) - k)/2)
    for a in range(max(1,v-3),v+5):
        if a*(a+k) > n: break
    ans += a-1
    for x in d:
        if check(x): ans -= 1

print(ans)
0