結果

問題 No.1383 Numbers of Product
ユーザー ayaoniayaoni
提出日時 2021-02-07 20:55:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 809 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 260,424 KB
最終ジャッジ日時 2024-07-04 14:03:14
合計ジャッジ時間 34,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 43 ms
53,376 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 44 ms
54,272 KB
testcase_07 AC 841 ms
233,376 KB
testcase_08 WA -
testcase_09 AC 979 ms
239,744 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1,064 ms
239,996 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 43 ms
54,272 KB
testcase_18 AC 46 ms
54,016 KB
testcase_19 AC 50 ms
53,632 KB
testcase_20 AC 50 ms
53,888 KB
testcase_21 AC 44 ms
53,760 KB
testcase_22 AC 43 ms
53,632 KB
testcase_23 AC 44 ms
53,632 KB
testcase_24 AC 43 ms
53,760 KB
testcase_25 AC 47 ms
53,888 KB
testcase_26 AC 50 ms
54,144 KB
testcase_27 WA -
testcase_28 AC 400 ms
171,100 KB
testcase_29 AC 1,034 ms
239,736 KB
testcase_30 AC 1,085 ms
259,964 KB
testcase_31 AC 502 ms
171,228 KB
testcase_32 AC 475 ms
171,572 KB
testcase_33 WA -
testcase_34 AC 503 ms
171,096 KB
testcase_35 AC 973 ms
239,996 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 1,107 ms
260,184 KB
testcase_39 AC 1,125 ms
259,960 KB
testcase_40 AC 1,057 ms
260,092 KB
testcase_41 WA -
testcase_42 AC 1,161 ms
259,964 KB
testcase_43 WA -
testcase_44 AC 1,047 ms
260,216 KB
testcase_45 AC 1,141 ms
259,968 KB
testcase_46 AC 42 ms
54,144 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 43 ms
53,632 KB
testcase_52 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,K,M = MI()

count = defaultdict(int)
for B in range(1,21):
    for A in range(1,10**6+1):
        x = 1
        for k in range(B+1):
            x *= A+k*K
        if x <= N:
            count[x] += 1
        else:
            break

ans = 0
for key in count.keys():
    if count[key] == M:
        ans += 1

print(ans)
0