結果

問題 No.673 カブトムシ
ユーザー qibqib
提出日時 2022-11-11 01:06:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-09-13 01:26:07
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,464 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,136 KB
testcase_03 AC 36 ms
52,068 KB
testcase_04 AC 37 ms
52,236 KB
testcase_05 AC 37 ms
53,012 KB
testcase_06 AC 35 ms
52,084 KB
testcase_07 AC 37 ms
52,156 KB
testcase_08 AC 36 ms
52,860 KB
testcase_09 AC 37 ms
52,400 KB
testcase_10 AC 37 ms
53,288 KB
testcase_11 AC 37 ms
52,628 KB
testcase_12 AC 37 ms
52,880 KB
testcase_13 AC 37 ms
52,120 KB
testcase_14 AC 36 ms
53,432 KB
testcase_15 AC 36 ms
52,424 KB
testcase_16 AC 36 ms
51,692 KB
testcase_17 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

b, c, d = map(int, input().split())

if d == 1:
  print((b * c) % MOD)
elif c == 1:
  print((b * d) % MOD)
else:
	ans = pow(c - 1, MOD - 2, MOD) * b * c * (pow(c, d, MOD) - 1) % MOD
	print(ans)
0