結果

問題 No.1258 コインゲーム
ユーザー rlangevinrlangevin
提出日時 2023-02-06 08:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 77,844 KB
最終ジャッジ日時 2024-07-04 14:59:55
合計ジャッジ時間 18,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
76,452 KB
testcase_01 AC 158 ms
76,032 KB
testcase_02 AC 103 ms
76,416 KB
testcase_03 AC 349 ms
76,032 KB
testcase_04 AC 387 ms
76,288 KB
testcase_05 AC 119 ms
76,032 KB
testcase_06 AC 292 ms
75,904 KB
testcase_07 AC 98 ms
76,288 KB
testcase_08 AC 89 ms
76,160 KB
testcase_09 AC 180 ms
76,032 KB
testcase_10 AC 336 ms
76,160 KB
testcase_11 AC 363 ms
76,116 KB
testcase_12 AC 284 ms
76,032 KB
testcase_13 AC 140 ms
76,092 KB
testcase_14 AC 98 ms
76,032 KB
testcase_15 AC 338 ms
76,032 KB
testcase_16 AC 124 ms
76,032 KB
testcase_17 AC 379 ms
76,160 KB
testcase_18 AC 186 ms
76,032 KB
testcase_19 AC 175 ms
76,288 KB
testcase_20 AC 320 ms
76,160 KB
testcase_21 AC 357 ms
76,416 KB
testcase_22 AC 270 ms
75,904 KB
testcase_23 AC 218 ms
76,176 KB
testcase_24 AC 133 ms
76,160 KB
testcase_25 AC 213 ms
76,180 KB
testcase_26 AC 187 ms
76,164 KB
testcase_27 AC 337 ms
76,160 KB
testcase_28 AC 145 ms
75,904 KB
testcase_29 AC 149 ms
76,032 KB
testcase_30 AC 417 ms
76,032 KB
testcase_31 AC 159 ms
76,160 KB
testcase_32 AC 113 ms
76,160 KB
testcase_33 AC 303 ms
76,036 KB
testcase_34 AC 360 ms
76,464 KB
testcase_35 AC 173 ms
76,476 KB
testcase_36 AC 342 ms
76,032 KB
testcase_37 AC 180 ms
75,904 KB
testcase_38 AC 322 ms
76,032 KB
testcase_39 AC 145 ms
76,048 KB
testcase_40 AC 429 ms
77,312 KB
testcase_41 AC 419 ms
77,300 KB
testcase_42 AC 421 ms
77,628 KB
testcase_43 AC 418 ms
77,312 KB
testcase_44 AC 423 ms
77,184 KB
testcase_45 AC 433 ms
77,568 KB
testcase_46 AC 421 ms
77,844 KB
testcase_47 AC 411 ms
77,568 KB
testcase_48 AC 416 ms
77,696 KB
testcase_49 AC 418 ms
77,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = int(input())
mod = 10 ** 9 + 7
inv = pow(2, mod - 2, mod)
for _ in range(S):
    N, M, X = map(int, input().split())
    X = 1 - 2 * X
    ans = pow(1 + M, N, mod) + X * pow(1 - M, N, mod)
    ans *= inv
    ans %= mod
    print(ans)
0