結果

問題 No.1383 Numbers of Product
ユーザー convexineqconvexineq
提出日時 2021-02-18 15:30:34
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 901 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 169,464 KB
最終ジャッジ日時 2024-11-22 23:28:11
合計ジャッジ時間 17,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
54,400 KB
testcase_01 AC 50 ms
54,016 KB
testcase_02 AC 48 ms
53,632 KB
testcase_03 AC 46 ms
53,632 KB
testcase_04 AC 46 ms
53,504 KB
testcase_05 AC 47 ms
53,888 KB
testcase_06 AC 47 ms
54,016 KB
testcase_07 AC 366 ms
150,004 KB
testcase_08 AC 450 ms
149,764 KB
testcase_09 AC 351 ms
151,796 KB
testcase_10 AC 582 ms
168,696 KB
testcase_11 AC 560 ms
168,820 KB
testcase_12 AC 566 ms
169,204 KB
testcase_13 AC 645 ms
169,464 KB
testcase_14 AC 454 ms
152,952 KB
testcase_15 AC 365 ms
150,008 KB
testcase_16 AC 539 ms
168,692 KB
testcase_17 AC 46 ms
54,016 KB
testcase_18 AC 47 ms
53,888 KB
testcase_19 AC 46 ms
53,376 KB
testcase_20 AC 47 ms
53,632 KB
testcase_21 AC 46 ms
53,632 KB
testcase_22 AC 47 ms
53,504 KB
testcase_23 AC 47 ms
53,760 KB
testcase_24 AC 46 ms
54,016 KB
testcase_25 AC 46 ms
53,248 KB
testcase_26 AC 46 ms
53,504 KB
testcase_27 AC 47 ms
54,276 KB
testcase_28 AC 59 ms
65,280 KB
testcase_29 AC 441 ms
152,184 KB
testcase_30 AC 588 ms
169,076 KB
testcase_31 AC 46 ms
53,632 KB
testcase_32 AC 131 ms
110,336 KB
testcase_33 AC 47 ms
54,016 KB
testcase_34 AC 52 ms
61,292 KB
testcase_35 AC 420 ms
168,820 KB
testcase_36 AC 595 ms
168,948 KB
testcase_37 AC 685 ms
168,944 KB
testcase_38 AC 580 ms
169,204 KB
testcase_39 AC 460 ms
168,952 KB
testcase_40 AC 454 ms
169,208 KB
testcase_41 AC 707 ms
169,080 KB
testcase_42 AC 615 ms
169,080 KB
testcase_43 AC 695 ms
168,944 KB
testcase_44 AC 474 ms
168,952 KB
testcase_45 AC 561 ms
168,944 KB
testcase_46 AC 47 ms
53,888 KB
testcase_47 AC 569 ms
169,072 KB
testcase_48 AC 585 ms
168,824 KB
testcase_49 AC 567 ms
168,820 KB
testcase_50 AC 708 ms
168,820 KB
testcase_51 AC 46 ms
54,400 KB
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import Counter
d = Counter()
for b in range(3,50):
    for a in range(1,10**6+1):
        x = a
        for i in range(1,b):
            x *= a + i*k
            if x > n: break
        if x <= n:
            d[x] += 1
        else:
            break
    if a==1: 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-2),v+10):
        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-2),v+10):
        if a*(a+k) > n: break
    ans += a-1
    for x in d:
        if check(x): ans -= 1

print(ans)
0