結果

問題 No.673 カブトムシ
ユーザー kohei2019kohei2019
提出日時 2022-03-10 00:07:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 53,560 KB
最終ジャッジ日時 2024-09-14 01:33:04
合計ジャッジ時間 1,595 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,204 KB
testcase_01 AC 40 ms
53,560 KB
testcase_02 AC 40 ms
52,408 KB
testcase_03 AC 39 ms
52,336 KB
testcase_04 AC 40 ms
53,492 KB
testcase_05 AC 39 ms
52,468 KB
testcase_06 AC 38 ms
53,176 KB
testcase_07 AC 38 ms
52,884 KB
testcase_08 AC 39 ms
52,820 KB
testcase_09 AC 39 ms
52,884 KB
testcase_10 AC 38 ms
53,100 KB
testcase_11 AC 39 ms
53,460 KB
testcase_12 AC 39 ms
53,476 KB
testcase_13 AC 39 ms
52,892 KB
testcase_14 AC 39 ms
52,696 KB
testcase_15 AC 39 ms
52,812 KB
testcase_16 AC 40 ms
52,524 KB
testcase_17 AC 39 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def modPow(a,n,mod):#繰り返し二乗法 a**n % mod
    if n==0:
        return 1
    if n==1:
        return a%mod
    if n & 1:
        return (a*modPow(a,n-1,mod)) % mod
    t = modPow(a,n>>1,mod)
    return (t*t)%mod

def invmod(a,mod):#mod逆元
    if a == 0:
        return 0
    if a == 1:
        return 1
    return (-invmod(mod % a, mod) * (mod // a)) % mod

B,C,D = map(int,input().split())
mod = 10**9+7
if C == 1:
    print((B*D)%mod)
    exit()

ans = ((B%mod)*(C%mod)*(modPow(C%mod, D, mod)-1)*invmod((C-1)%mod, mod))%mod
if (C-1) % mod == 0:
    print((B*C*D)%mod)
    exit()
print(ans)
0