結果

問題 No.673 カブトムシ
ユーザー roarisroaris
提出日時 2019-08-19 11:00:30
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 208 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-07-02 15:53:19
合計ジャッジ時間 1,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 38 ms
52,088 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 37 ms
51,712 KB
testcase_13 AC 37 ms
52,352 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 AC 37 ms
51,840 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def inv(x):
    return pow(x, MOD-2, MOD)
    
B, C, D = map(int, input().split())
MOD = 10 ** 9 + 7

if C == 1:
    print(B * D % MOD)
else:
    print(((B * C * (pow(C, D, MOD) - 1)) % MOD) * inv(C-1) % MOD)
0