結果

問題 No.673 カブトムシ
ユーザー roarisroaris
提出日時 2019-08-19 10:57:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 53,484 KB
最終ジャッジ日時 2024-10-02 13:24:50
合計ジャッジ時間 1,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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