結果

問題 No.1383 Numbers of Product
ユーザー MitarushiMitarushi
提出日時 2020-12-15 19:06:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 171,252 KB
最終ジャッジ日時 2024-07-04 11:04:39
合計ジャッジ時間 13,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 37 ms
52,736 KB
testcase_07 AC 277 ms
138,068 KB
testcase_08 AC 272 ms
138,072 KB
testcase_09 AC 359 ms
171,108 KB
testcase_10 AC 457 ms
171,228 KB
testcase_11 AC 453 ms
171,104 KB
testcase_12 AC 448 ms
171,092 KB
testcase_13 AC 434 ms
171,224 KB
testcase_14 AC 351 ms
171,224 KB
testcase_15 AC 290 ms
138,204 KB
testcase_16 AC 439 ms
170,860 KB
testcase_17 AC 37 ms
52,608 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 38 ms
52,224 KB
testcase_21 AC 37 ms
52,224 KB
testcase_22 WA -
testcase_23 AC 38 ms
52,096 KB
testcase_24 WA -
testcase_25 AC 35 ms
52,352 KB
testcase_26 AC 35 ms
52,224 KB
testcase_27 AC 35 ms
52,480 KB
testcase_28 AC 57 ms
66,432 KB
testcase_29 AC 362 ms
170,972 KB
testcase_30 AC 462 ms
171,104 KB
testcase_31 AC 38 ms
52,224 KB
testcase_32 AC 131 ms
111,232 KB
testcase_33 AC 36 ms
52,224 KB
testcase_34 AC 43 ms
60,416 KB
testcase_35 AC 430 ms
171,180 KB
testcase_36 AC 399 ms
171,116 KB
testcase_37 AC 467 ms
171,236 KB
testcase_38 AC 492 ms
171,228 KB
testcase_39 AC 481 ms
170,968 KB
testcase_40 AC 478 ms
171,252 KB
testcase_41 AC 456 ms
170,968 KB
testcase_42 AC 449 ms
170,968 KB
testcase_43 AC 459 ms
171,092 KB
testcase_44 AC 465 ms
171,104 KB
testcase_45 AC 433 ms
171,220 KB
testcase_46 AC 38 ms
52,096 KB
testcase_47 AC 442 ms
171,100 KB
testcase_48 AC 454 ms
170,952 KB
testcase_49 AC 452 ms
170,840 KB
testcase_50 AC 472 ms
170,968 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def max2(x):
    y = round(-k/2 + ((k/2)**2 + x)**0.5)
    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, 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