結果

問題 No.1809 Divide NCK
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-01-14 22:19:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 62,104 KB
最終ジャッジ日時 2024-11-20 11:31:52
合計ジャッジ時間 3,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,224 KB
testcase_01 AC 42 ms
54,200 KB
testcase_02 AC 43 ms
54,040 KB
testcase_03 AC 43 ms
53,884 KB
testcase_04 AC 43 ms
54,620 KB
testcase_05 AC 43 ms
54,800 KB
testcase_06 AC 43 ms
54,004 KB
testcase_07 AC 43 ms
54,320 KB
testcase_08 AC 46 ms
53,832 KB
testcase_09 AC 44 ms
55,168 KB
testcase_10 AC 44 ms
54,812 KB
testcase_11 AC 45 ms
55,176 KB
testcase_12 AC 44 ms
54,152 KB
testcase_13 AC 50 ms
60,472 KB
testcase_14 AC 45 ms
54,684 KB
testcase_15 AC 45 ms
54,080 KB
testcase_16 AC 98 ms
61,356 KB
testcase_17 AC 50 ms
60,992 KB
testcase_18 AC 93 ms
60,812 KB
testcase_19 AC 97 ms
59,920 KB
testcase_20 AC 48 ms
60,436 KB
testcase_21 AC 45 ms
55,572 KB
testcase_22 AC 44 ms
54,736 KB
testcase_23 AC 43 ms
54,004 KB
testcase_24 AC 44 ms
54,268 KB
testcase_25 AC 43 ms
54,856 KB
testcase_26 AC 44 ms
54,244 KB
testcase_27 AC 43 ms
54,160 KB
testcase_28 AC 44 ms
54,720 KB
testcase_29 AC 76 ms
60,560 KB
testcase_30 AC 48 ms
62,104 KB
testcase_31 AC 49 ms
61,448 KB
testcase_32 AC 44 ms
54,272 KB
testcase_33 AC 53 ms
61,104 KB
testcase_34 AC 49 ms
60,600 KB
testcase_35 AC 50 ms
59,988 KB
testcase_36 AC 49 ms
61,964 KB
testcase_37 AC 46 ms
54,584 KB
testcase_38 AC 44 ms
54,828 KB
testcase_39 AC 44 ms
54,632 KB
testcase_40 AC 44 ms
54,532 KB
testcase_41 AC 45 ms
54,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,m = map(int,input().split())
def prime_factorization(w,d):
    cnt = 2
    while w > 1:
        if cnt > int(w ** (1/2)):
            d[w] += 1
            break
        while w % cnt == 0:
            d[cnt] += 1
            w //= cnt
        cnt += 1
from collections import defaultdict
m_d = defaultdict(int)
prime_factorization(m,m_d)
def f_prime(N,K):
    d = defaultdict(int)
    def cul(nn,pm):
        for key in m_d.keys():
            cnt = 1
            while key ** cnt <= nn:
                if pm :
                    d[key] += nn // (key ** cnt)
                else:
                    d[key] -= nn // (key ** cnt)
                cnt += 1
    cul(N,True)
    cul(N-K,False)
    cul(K,False)
    return d
n_d = f_prime(n,k)
ans = 10000
for key in m_d.keys():
    ans = min(ans,n_d[key]//m_d[key])
print(ans)
0