結果

問題 No.1383 Numbers of Product
ユーザー KudeKude
提出日時 2021-02-11 16:24:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,029 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 201,236 KB
最終ジャッジ日時 2024-11-22 23:27:45
合計ジャッジ時間 28,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
60,288 KB
testcase_01 AC 56 ms
59,904 KB
testcase_02 AC 54 ms
60,416 KB
testcase_03 AC 77 ms
76,160 KB
testcase_04 AC 76 ms
75,392 KB
testcase_05 AC 76 ms
76,052 KB
testcase_06 AC 76 ms
75,988 KB
testcase_07 AC 602 ms
138,376 KB
testcase_08 AC 606 ms
138,364 KB
testcase_09 AC 748 ms
165,340 KB
testcase_10 AC 987 ms
187,880 KB
testcase_11 AC 993 ms
187,488 KB
testcase_12 AC 1,024 ms
187,872 KB
testcase_13 AC 907 ms
187,228 KB
testcase_14 AC 796 ms
166,248 KB
testcase_15 AC 642 ms
138,364 KB
testcase_16 AC 934 ms
187,620 KB
testcase_17 AC 95 ms
75,608 KB
testcase_18 AC 92 ms
75,904 KB
testcase_19 AC 91 ms
76,228 KB
testcase_20 AC 91 ms
75,544 KB
testcase_21 AC 91 ms
75,648 KB
testcase_22 AC 91 ms
76,196 KB
testcase_23 AC 92 ms
76,372 KB
testcase_24 AC 91 ms
76,280 KB
testcase_25 AC 91 ms
75,488 KB
testcase_26 AC 91 ms
75,520 KB
testcase_27 AC 134 ms
75,776 KB
testcase_28 AC 146 ms
77,840 KB
testcase_29 AC 752 ms
165,596 KB
testcase_30 AC 970 ms
187,764 KB
testcase_31 AC 105 ms
75,648 KB
testcase_32 AC 257 ms
96,244 KB
testcase_33 AC 106 ms
76,160 KB
testcase_34 AC 133 ms
76,292 KB
testcase_35 AC 880 ms
181,364 KB
testcase_36 AC 872 ms
181,356 KB
testcase_37 AC 1,029 ms
187,796 KB
testcase_38 AC 1,023 ms
188,052 KB
testcase_39 AC 997 ms
187,788 KB
testcase_40 AC 961 ms
187,916 KB
testcase_41 AC 970 ms
188,404 KB
testcase_42 AC 1,003 ms
188,024 KB
testcase_43 AC 995 ms
188,144 KB
testcase_44 AC 1,003 ms
188,140 KB
testcase_45 AC 949 ms
187,768 KB
testcase_46 AC 91 ms
75,520 KB
testcase_47 AC 958 ms
200,392 KB
testcase_48 AC 981 ms
200,876 KB
testcase_49 AC 958 ms
199,912 KB
testcase_50 AC 1,021 ms
201,236 KB
testcase_51 AC 91 ms
75,904 KB
testcase_52 AC 91 ms
75,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n, k, m = map(int, input().split())
c = Counter()
for s in range(1, 10 ** 6 + 1):
    now = 1
    for i in range(100):
        now *= s + i * k
        if now > n:
            break
        if i >= 2:
            c[now] += 1

def g(x):
    # a(a+k) = x
    if 1 + k > x:
        return False
    l = 1
    r = 10 ** 9
    while r - l > 1:
        c = (r + l) // 2
        if c * (c + k) <= x:
            l = c
        else:
            r = c
    return l * (l + k) == x

ans = 0
for x, cnt in c.items():
    if g(x):
        if m == 1:
            ans -= 1
        elif cnt + 1 == m:
            ans += 1
    elif cnt == m:
        ans += 1

if m == 1 and 1 + k <= n:
    l = 1
    r = 10 ** 9
    while r - l > 1:
        c = (r + l) // 2
        if c * (c + k) <= n:
            l = c
        else:
            r = c
    ans += l
print(ans)
0