結果

問題 No.1258 コインゲーム
ユーザー chineristACchineristAC
提出日時 2020-10-16 23:34:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-21 00:15:05
合計ジャッジ時間 11,576 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
75,904 KB
testcase_01 AC 110 ms
76,416 KB
testcase_02 AC 80 ms
73,600 KB
testcase_03 AC 205 ms
75,904 KB
testcase_04 AC 221 ms
75,904 KB
testcase_05 AC 92 ms
75,904 KB
testcase_06 AC 176 ms
76,288 KB
testcase_07 AC 75 ms
72,320 KB
testcase_08 AC 73 ms
71,808 KB
testcase_09 AC 122 ms
76,416 KB
testcase_10 AC 200 ms
76,032 KB
testcase_11 AC 212 ms
76,032 KB
testcase_12 AC 181 ms
76,288 KB
testcase_13 AC 101 ms
76,032 KB
testcase_14 AC 75 ms
72,192 KB
testcase_15 AC 196 ms
76,160 KB
testcase_16 AC 94 ms
75,904 KB
testcase_17 AC 213 ms
75,904 KB
testcase_18 AC 123 ms
75,904 KB
testcase_19 AC 119 ms
76,032 KB
testcase_20 AC 178 ms
76,416 KB
testcase_21 AC 206 ms
76,032 KB
testcase_22 AC 164 ms
76,032 KB
testcase_23 AC 141 ms
75,904 KB
testcase_24 AC 91 ms
76,288 KB
testcase_25 AC 136 ms
75,904 KB
testcase_26 AC 127 ms
76,032 KB
testcase_27 AC 202 ms
76,032 KB
testcase_28 AC 102 ms
75,904 KB
testcase_29 AC 108 ms
75,776 KB
testcase_30 AC 235 ms
75,904 KB
testcase_31 AC 109 ms
76,032 KB
testcase_32 AC 82 ms
73,856 KB
testcase_33 AC 180 ms
76,032 KB
testcase_34 AC 204 ms
76,416 KB
testcase_35 AC 114 ms
76,288 KB
testcase_36 AC 202 ms
76,032 KB
testcase_37 AC 121 ms
76,032 KB
testcase_38 AC 193 ms
75,904 KB
testcase_39 AC 105 ms
76,160 KB
testcase_40 AC 232 ms
76,160 KB
testcase_41 AC 239 ms
76,288 KB
testcase_42 AC 233 ms
76,288 KB
testcase_43 AC 233 ms
76,416 KB
testcase_44 AC 238 ms
76,160 KB
testcase_45 AC 236 ms
76,160 KB
testcase_46 AC 234 ms
76,288 KB
testcase_47 AC 239 ms
76,288 KB
testcase_48 AC 239 ms
76,160 KB
testcase_49 AC 238 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

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