結果

問題 No.673 カブトムシ
ユーザー AEnAEn
提出日時 2022-06-22 00:51:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 53,460 KB
最終ジャッジ日時 2024-10-15 02:55:45
合計ジャッジ時間 1,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 36 ms
52,084 KB
testcase_03 AC 36 ms
52,200 KB
testcase_04 AC 37 ms
53,184 KB
testcase_05 AC 37 ms
52,232 KB
testcase_06 AC 36 ms
51,884 KB
testcase_07 AC 36 ms
52,696 KB
testcase_08 AC 37 ms
53,460 KB
testcase_09 AC 36 ms
51,900 KB
testcase_10 AC 43 ms
51,940 KB
testcase_11 AC 37 ms
51,960 KB
testcase_12 AC 36 ms
52,276 KB
testcase_13 AC 39 ms
52,632 KB
testcase_14 AC 38 ms
52,492 KB
testcase_15 AC 37 ms
51,828 KB
testcase_16 AC 37 ms
52,972 KB
testcase_17 AC 38 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B,C,D=map(int,input().split())
mod=10**9+7
print((D*B)%mod) if C==1 else print(((B*(pow(C, D, mod)-1)*pow(C-1, mod-2, mod))%mod+B*pow(C, D, mod)-B)%mod)
0