結果

問題 No.1809 Divide NCK
ユーザー horitaka1999horitaka1999
提出日時 2022-01-15 12:21:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,077 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 59,776 KB
最終ジャッジ日時 2024-11-21 12:03:05
合計ジャッジ時間 3,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,272 KB
testcase_01 AC 48 ms
54,128 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 44 ms
54,144 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 44 ms
54,016 KB
testcase_08 AC 43 ms
54,144 KB
testcase_09 AC 43 ms
53,760 KB
testcase_10 AC 44 ms
54,016 KB
testcase_11 AC 45 ms
54,656 KB
testcase_12 AC 44 ms
54,272 KB
testcase_13 AC 47 ms
59,008 KB
testcase_14 AC 44 ms
54,016 KB
testcase_15 AC 46 ms
59,520 KB
testcase_16 AC 61 ms
59,648 KB
testcase_17 AC 52 ms
59,264 KB
testcase_18 AC 60 ms
59,008 KB
testcase_19 AC 61 ms
59,264 KB
testcase_20 AC 48 ms
59,008 KB
testcase_21 AC 45 ms
54,528 KB
testcase_22 AC 43 ms
54,016 KB
testcase_23 AC 44 ms
54,144 KB
testcase_24 AC 44 ms
53,760 KB
testcase_25 AC 43 ms
54,016 KB
testcase_26 AC 45 ms
54,272 KB
testcase_27 AC 44 ms
53,888 KB
testcase_28 WA -
testcase_29 AC 53 ms
59,392 KB
testcase_30 AC 46 ms
59,264 KB
testcase_31 AC 45 ms
59,392 KB
testcase_32 AC 44 ms
54,528 KB
testcase_33 AC 48 ms
59,776 KB
testcase_34 AC 48 ms
59,136 KB
testcase_35 WA -
testcase_36 AC 47 ms
59,648 KB
testcase_37 AC 45 ms
54,656 KB
testcase_38 AC 45 ms
54,272 KB
testcase_39 AC 44 ms
54,528 KB
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,K,M = map(int,input().split())
class get_prime():#使うたびにクラスの定義が必要。self.revの使い回しNG
    def __init__(self):
        self.rev = []
    def prime(self,n):
        if n == 1:
            return self.rev
        for i in range(2,int(n**0.5)+1):
            if n % i == 0:
                self.rev.append(i)
                self.prime(int(n/i))
                break
        else:
            self.rev.append(n)
        return self.rev
gp = get_prime()
mp = gp.prime(M)
pdic = defaultdict(int)
for p in mp:
    pdic[p] += 1

def f(l,r,x,p):
    al = (l + pow(p,x) -1) // pow(p,x)
    al = max(al,1)
    ar = r //pow(p,x)
    if ar >= 1 and al <= ar:
        return ar - al + 1
    else:
        return 0
def g(l,r,p):
    x = 1
    res = 0
    while pow(p,x) <= r:
        res += f(l,r,x,p)
        x += 1
    return res
INF = float('inf')
UP = INF
DOWN = INF
for p in pdic.keys():
    up = g(N-K+1,N,p)//pdic[p]
    down = g(1,K,p) //pdic[p]
    UP = min(UP,up)
    DOWN = min(down,down)
print(UP - DOWN)

0