結果

問題 No.1383 Numbers of Product
ユーザー MitarushiMitarushi
提出日時 2020-12-15 19:49:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 1,031 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 176,216 KB
最終ジャッジ日時 2024-11-22 23:12:27
合計ジャッジ時間 13,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,628 KB
testcase_01 AC 37 ms
52,020 KB
testcase_02 AC 37 ms
52,332 KB
testcase_03 AC 39 ms
52,776 KB
testcase_04 AC 39 ms
52,596 KB
testcase_05 AC 37 ms
52,980 KB
testcase_06 AC 38 ms
53,316 KB
testcase_07 AC 274 ms
142,788 KB
testcase_08 AC 278 ms
142,716 KB
testcase_09 AC 350 ms
162,712 KB
testcase_10 AC 437 ms
175,600 KB
testcase_11 AC 420 ms
175,596 KB
testcase_12 AC 437 ms
176,144 KB
testcase_13 AC 408 ms
175,844 KB
testcase_14 AC 336 ms
175,892 KB
testcase_15 AC 268 ms
142,684 KB
testcase_16 AC 433 ms
175,632 KB
testcase_17 AC 38 ms
52,504 KB
testcase_18 AC 35 ms
52,724 KB
testcase_19 AC 36 ms
52,348 KB
testcase_20 AC 36 ms
53,112 KB
testcase_21 AC 34 ms
53,000 KB
testcase_22 AC 37 ms
52,248 KB
testcase_23 AC 37 ms
54,276 KB
testcase_24 AC 37 ms
52,992 KB
testcase_25 AC 37 ms
52,696 KB
testcase_26 AC 36 ms
53,092 KB
testcase_27 AC 46 ms
67,488 KB
testcase_28 AC 50 ms
66,244 KB
testcase_29 AC 331 ms
175,916 KB
testcase_30 AC 429 ms
175,688 KB
testcase_31 AC 36 ms
52,748 KB
testcase_32 AC 112 ms
108,692 KB
testcase_33 AC 38 ms
54,204 KB
testcase_34 AC 44 ms
60,320 KB
testcase_35 AC 406 ms
175,892 KB
testcase_36 AC 376 ms
175,736 KB
testcase_37 AC 466 ms
171,372 KB
testcase_38 AC 452 ms
170,816 KB
testcase_39 AC 462 ms
171,196 KB
testcase_40 AC 457 ms
171,040 KB
testcase_41 AC 435 ms
175,540 KB
testcase_42 AC 438 ms
175,612 KB
testcase_43 AC 447 ms
175,836 KB
testcase_44 AC 446 ms
176,160 KB
testcase_45 AC 424 ms
175,620 KB
testcase_46 AC 37 ms
52,672 KB
testcase_47 AC 419 ms
175,580 KB
testcase_48 AC 458 ms
176,216 KB
testcase_49 AC 435 ms
175,916 KB
testcase_50 AC 470 ms
175,624 KB
testcase_51 AC 38 ms
53,116 KB
testcase_52 AC 39 ms
52,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, m = map(int, input().split())


def max2(x):
    ok = 0
    ng = 10**9
    while ng - ok > 1:
        m = (ok + ng) // 2
        if m * (m + k) <= x:
            ok = m
        else:
            ng = m
    return ok


def sqrt(x):
    s = 1
    while True:
        s = (x//s+s)//2
        if s**2 <= x < (s+1)**2:
            return s


def is_2(x):
    if k < (1<<25):
        y = round(-k/2 + ((k/2)**2 + x)**0.5)
    else:
        t = k**2 + x * 4
        r = sqrt(t)
        if t != r**2:
            return False
        y = (-k + r) // 2

    return y*(y+k) == x


big2 = {}
for b in range(3, 20):
    i = 1
    while True:
        x = 1
        for j in range(b):
            x *= i + j * k
        if x > n:
            break
        if x in big2:
            big2[x] += 1
        else:
            big2[x] = 1
        i += 1

count_2 = max2(n)
for i in big2:
    if is_2(i):
        big2[i] += 1
        count_2 -= 1

ans = count_2 if m == 1 else 0
for i in big2.values():
    if i == m:
        ans += 1
print(ans)
0