結果

問題 No.1383 Numbers of Product
ユーザー MitarushiMitarushi
提出日時 2020-12-15 18:53:08
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 654 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 171,300 KB
最終ジャッジ日時 2024-07-04 11:03:25
合計ジャッジ時間 14,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,752 KB
testcase_01 AC 45 ms
58,752 KB
testcase_02 AC 45 ms
58,880 KB
testcase_03 AC 50 ms
59,136 KB
testcase_04 AC 41 ms
59,008 KB
testcase_05 AC 44 ms
59,136 KB
testcase_06 AC 44 ms
59,008 KB
testcase_07 AC 311 ms
138,332 KB
testcase_08 AC 298 ms
138,072 KB
testcase_09 AC 363 ms
171,096 KB
testcase_10 AC 493 ms
171,140 KB
testcase_11 AC 485 ms
170,964 KB
testcase_12 AC 502 ms
170,840 KB
testcase_13 AC 442 ms
171,300 KB
testcase_14 AC 359 ms
171,100 KB
testcase_15 AC 298 ms
138,204 KB
testcase_16 AC 439 ms
171,048 KB
testcase_17 AC 47 ms
61,036 KB
testcase_18 AC 47 ms
61,184 KB
testcase_19 AC 45 ms
60,800 KB
testcase_20 AC 47 ms
61,184 KB
testcase_21 AC 46 ms
60,928 KB
testcase_22 WA -
testcase_23 AC 48 ms
61,440 KB
testcase_24 WA -
testcase_25 AC 46 ms
61,312 KB
testcase_26 WA -
testcase_27 AC 44 ms
59,136 KB
testcase_28 AC 62 ms
68,096 KB
testcase_29 AC 377 ms
171,296 KB
testcase_30 AC 479 ms
171,024 KB
testcase_31 AC 46 ms
58,752 KB
testcase_32 AC 140 ms
111,104 KB
testcase_33 AC 44 ms
58,752 KB
testcase_34 AC 53 ms
61,568 KB
testcase_35 AC 434 ms
170,972 KB
testcase_36 AC 405 ms
171,152 KB
testcase_37 AC 489 ms
171,100 KB
testcase_38 AC 478 ms
171,096 KB
testcase_39 AC 468 ms
171,100 KB
testcase_40 AC 469 ms
171,216 KB
testcase_41 AC 457 ms
171,096 KB
testcase_42 AC 461 ms
171,092 KB
testcase_43 AC 463 ms
171,092 KB
testcase_44 AC 476 ms
171,092 KB
testcase_45 AC 447 ms
171,092 KB
testcase_46 AC 46 ms
61,312 KB
testcase_47 AC 440 ms
171,224 KB
testcase_48 AC 474 ms
171,020 KB
testcase_49 AC 470 ms
171,100 KB
testcase_50 AC 465 ms
170,840 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def max2(x):
    y = round((-k + (k**2 + 4*x)**0.5) / 2)
    if y*(y+k) > x:
        y -= 1
    return y


def is_2(x):
    y = max2(x)
    return y*(y+k) == x


big2 = {}
for b in range(3, 100):
    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