結果

問題 No.1259 スイッチ
ユーザー ああいいああいい
提出日時 2021-12-27 20:52:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 313 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-01 07:38:09
合計ジャッジ時間 21,342 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 WA * 58
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
P = 10 ** 9 + 7

now = pow(N,N-1,P)
inv = pow(N,P-2,P)
inv2 = pow(N-1,P-2,P)
ans = now
for i in range(2,N+1):
    now = now * inv * (N-i + 1) % P
    if K % i == 0:
        ans = (ans + now) % P
hoka = (pow(N,N,P) - ans) * inv2 % P
if M == 1:
    print(ans)
else:
    print(hoka)
0