結果

問題 No.129 お年玉(2)
ユーザー rlangevinrlangevin
提出日時 2023-02-11 01:55:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 5,000 ms
コード長 826 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 72,832 KB
最終ジャッジ日時 2024-07-07 18:58:50
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
64,768 KB
testcase_01 AC 404 ms
71,424 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 39 ms
54,016 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 183 ms
69,760 KB
testcase_06 AC 159 ms
69,120 KB
testcase_07 AC 220 ms
70,272 KB
testcase_08 AC 237 ms
71,040 KB
testcase_09 AC 132 ms
71,168 KB
testcase_10 AC 244 ms
71,552 KB
testcase_11 AC 165 ms
69,376 KB
testcase_12 AC 71 ms
66,816 KB
testcase_13 AC 62 ms
65,920 KB
testcase_14 AC 164 ms
71,040 KB
testcase_15 AC 149 ms
69,248 KB
testcase_16 AC 172 ms
67,968 KB
testcase_17 AC 125 ms
72,192 KB
testcase_18 AC 219 ms
69,504 KB
testcase_19 AC 294 ms
71,680 KB
testcase_20 AC 192 ms
72,832 KB
testcase_21 AC 134 ms
71,296 KB
testcase_22 AC 194 ms
71,808 KB
testcase_23 AC 240 ms
69,888 KB
testcase_24 AC 335 ms
72,704 KB
testcase_25 AC 159 ms
69,376 KB
testcase_26 AC 201 ms
67,840 KB
testcase_27 AC 189 ms
68,096 KB
testcase_28 AC 191 ms
71,168 KB
testcase_29 AC 39 ms
53,760 KB
testcase_30 AC 38 ms
54,272 KB
testcase_31 AC 39 ms
54,144 KB
testcase_32 AC 38 ms
54,016 KB
testcase_33 AC 44 ms
59,136 KB
testcase_34 AC 47 ms
61,440 KB
testcase_35 AC 45 ms
60,544 KB
testcase_36 AC 52 ms
63,488 KB
testcase_37 AC 47 ms
61,696 KB
testcase_38 AC 77 ms
66,688 KB
testcase_39 AC 75 ms
68,352 KB
testcase_40 AC 105 ms
67,456 KB
testcase_41 AC 125 ms
69,760 KB
testcase_42 AC 93 ms
68,864 KB
testcase_43 AC 64 ms
66,176 KB
testcase_44 AC 366 ms
72,448 KB
testcase_45 AC 82 ms
68,736 KB
testcase_46 AC 62 ms
65,792 KB
testcase_47 AC 297 ms
71,808 KB
testcase_48 AC 237 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *
from collections import *

def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S


N = int(input())//1000
M = int(input())
r = N % M
ans = 1
mod = 10 ** 9
inv = 1
seen = [0] * (r + 1)
P = Sieve(M)
D = defaultdict(int)
for p in P:
    now = p
    while True:
        D[p] += r//now
        now *= p
        if M // now == 0:
            break

for i in range(r):
    now = M - i
    for k, v in D.items():
        while D[k]:
            if now % k == 0:
                now //= k
                D[k] -= 1
            else:
                break
    ans *= now
    ans %= mod
print(ans)
0