結果

問題 No.1259 スイッチ
ユーザー mkawa2mkawa2
提出日時 2021-12-04 23:49:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,636 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 146,560 KB
最終ジャッジ日時 2024-07-07 06:45:44
合計ジャッジ時間 16,962 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
144,000 KB
testcase_01 AC 91 ms
143,744 KB
testcase_02 AC 94 ms
143,488 KB
testcase_03 AC 94 ms
143,872 KB
testcase_04 AC 97 ms
143,744 KB
testcase_05 AC 96 ms
143,616 KB
testcase_06 WA -
testcase_07 AC 91 ms
143,744 KB
testcase_08 AC 91 ms
143,488 KB
testcase_09 AC 94 ms
143,872 KB
testcase_10 AC 357 ms
146,432 KB
testcase_11 AC 509 ms
146,304 KB
testcase_12 AC 348 ms
146,048 KB
testcase_13 AC 247 ms
146,048 KB
testcase_14 AC 311 ms
146,048 KB
testcase_15 AC 239 ms
146,048 KB
testcase_16 AC 435 ms
146,304 KB
testcase_17 AC 298 ms
146,304 KB
testcase_18 AC 488 ms
146,048 KB
testcase_19 AC 491 ms
145,920 KB
testcase_20 AC 367 ms
146,048 KB
testcase_21 AC 527 ms
146,304 KB
testcase_22 AC 225 ms
146,432 KB
testcase_23 AC 471 ms
145,920 KB
testcase_24 AC 385 ms
146,408 KB
testcase_25 AC 366 ms
146,304 KB
testcase_26 AC 528 ms
146,304 KB
testcase_27 AC 442 ms
146,304 KB
testcase_28 AC 375 ms
146,304 KB
testcase_29 AC 443 ms
146,048 KB
testcase_30 AC 107 ms
144,256 KB
testcase_31 AC 106 ms
144,256 KB
testcase_32 AC 107 ms
144,128 KB
testcase_33 AC 107 ms
144,128 KB
testcase_34 AC 109 ms
144,384 KB
testcase_35 AC 115 ms
143,872 KB
testcase_36 AC 113 ms
144,000 KB
testcase_37 AC 110 ms
144,256 KB
testcase_38 AC 107 ms
144,256 KB
testcase_39 AC 107 ms
144,000 KB
testcase_40 AC 107 ms
144,000 KB
testcase_41 AC 111 ms
144,384 KB
testcase_42 AC 115 ms
144,512 KB
testcase_43 AC 110 ms
144,000 KB
testcase_44 AC 108 ms
144,512 KB
testcase_45 AC 106 ms
144,256 KB
testcase_46 AC 106 ms
144,384 KB
testcase_47 AC 108 ms
144,128 KB
testcase_48 AC 111 ms
144,128 KB
testcase_49 AC 108 ms
144,256 KB
testcase_50 AC 341 ms
146,304 KB
testcase_51 AC 231 ms
145,792 KB
testcase_52 AC 538 ms
145,920 KB
testcase_53 AC 287 ms
146,304 KB
testcase_54 AC 507 ms
145,920 KB
testcase_55 AC 217 ms
146,176 KB
testcase_56 AC 298 ms
146,560 KB
testcase_57 AC 474 ms
146,432 KB
testcase_58 AC 354 ms
146,176 KB
testcase_59 AC 411 ms
146,432 KB
testcase_60 AC 547 ms
146,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 18446744073709551615
inf = 4294967295
md = 10**9+7
# md = 998244353

def nHr(hn, hr):
    return nCr(hn+hr-1, hr-1)

def nPr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_n-com_r]%md

def nCr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_r]%md*ifac[com_n-com_r]%md

# 準備
n_max = 1000005
fac = [1]
for i in range(1, n_max+1): fac.append(fac[-1]*i%md)
ifac = [1]*(n_max+1)
ifac[n_max] = pow(fac[n_max], md-2, md)
for i in range(n_max-1, 1, -1): ifac[i] = ifac[i+1]*(i+1)%md

def factors(a):
    res = []
    for f in range(1, min(a, 1000000)+1):
        if a%f == 0: res.append(f)
    return res

n, k, m = LI()
ff = set(factors(k))

if m == 1:
    ans = 0
    for a in ff:
        a -= 1
        ans += nPr(n-1, a)*pow(n, n-1-a, md)%md
        ans %= md
    print(ans)
    exit()

ans = nPr(n-1, k)

for a in range(1, min(k, n)):
    c = a if a+1 in ff else a+1
    ans += nPr(n-2, a-1)*c%md*pow(n, n-1-a, md)%md
    ans %= md

print(ans)
0