結果

問題 No.1258 コインゲーム
ユーザー yuruhiyayuruhiya
提出日時 2020-10-16 22:14:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-20 22:02:35
合計ジャッジ時間 22,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
12,160 KB
testcase_01 AC 203 ms
12,288 KB
testcase_02 AC 132 ms
12,416 KB
testcase_03 AC 449 ms
12,160 KB
testcase_04 AC 506 ms
12,160 KB
testcase_05 AC 161 ms
12,160 KB
testcase_06 AC 389 ms
12,416 KB
testcase_07 AC 123 ms
12,416 KB
testcase_08 AC 122 ms
12,160 KB
testcase_09 AC 240 ms
12,160 KB
testcase_10 AC 450 ms
12,416 KB
testcase_11 AC 493 ms
12,288 KB
testcase_12 AC 384 ms
12,160 KB
testcase_13 AC 182 ms
12,416 KB
testcase_14 AC 127 ms
12,288 KB
testcase_15 AC 438 ms
12,160 KB
testcase_16 AC 159 ms
12,288 KB
testcase_17 AC 492 ms
12,288 KB
testcase_18 AC 238 ms
12,160 KB
testcase_19 AC 227 ms
12,288 KB
testcase_20 AC 385 ms
12,288 KB
testcase_21 AC 462 ms
12,416 KB
testcase_22 AC 353 ms
12,160 KB
testcase_23 AC 283 ms
12,416 KB
testcase_24 AC 163 ms
12,160 KB
testcase_25 AC 273 ms
12,160 KB
testcase_26 AC 251 ms
12,288 KB
testcase_27 AC 453 ms
12,032 KB
testcase_28 AC 186 ms
12,160 KB
testcase_29 AC 193 ms
12,288 KB
testcase_30 AC 546 ms
12,160 KB
testcase_31 AC 206 ms
12,160 KB
testcase_32 AC 146 ms
12,160 KB
testcase_33 AC 392 ms
12,160 KB
testcase_34 AC 465 ms
12,288 KB
testcase_35 AC 221 ms
12,160 KB
testcase_36 AC 451 ms
12,160 KB
testcase_37 AC 236 ms
12,416 KB
testcase_38 AC 434 ms
12,288 KB
testcase_39 AC 189 ms
12,288 KB
testcase_40 AC 551 ms
12,160 KB
testcase_41 AC 547 ms
12,288 KB
testcase_42 AC 557 ms
12,416 KB
testcase_43 AC 549 ms
12,160 KB
testcase_44 AC 548 ms
12,160 KB
testcase_45 AC 556 ms
12,416 KB
testcase_46 AC 547 ms
12,160 KB
testcase_47 AC 552 ms
12,416 KB
testcase_48 AC 548 ms
12,160 KB
testcase_49 AC 561 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

MOD = 10**9 + 7
gets.to_i.times {
	n, m, k = gets.split.map(&:to_i)
	x, y = (1 + m).pow(n, MOD), (1 - m).pow(n, MOD)
	puts (k == 0 ? x + y : x - y) * 2.pow(MOD - 2, MOD) % MOD
}
0