結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 WA -
testcase_10 AC 116 ms
51,808 KB
testcase_11 AC 37 ms
52,352 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 37 ms
52,096 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
52,352 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)
else:
    print(((B * C * (pow(C, D, MOD) - 1)) % MOD) * inv(C-1) % MOD)
0