結果

問題 No.1258 コインゲーム
ユーザー titiatitia
提出日時 2022-06-15 01:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-03 04:36:02
合計ジャッジ時間 12,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
75,904 KB
testcase_01 AC 111 ms
76,216 KB
testcase_02 AC 78 ms
72,192 KB
testcase_03 AC 223 ms
76,160 KB
testcase_04 AC 242 ms
76,260 KB
testcase_05 AC 95 ms
75,684 KB
testcase_06 AC 189 ms
76,544 KB
testcase_07 AC 72 ms
70,796 KB
testcase_08 AC 72 ms
71,040 KB
testcase_09 AC 129 ms
75,860 KB
testcase_10 AC 217 ms
76,136 KB
testcase_11 AC 235 ms
75,900 KB
testcase_12 AC 187 ms
75,812 KB
testcase_13 AC 101 ms
76,032 KB
testcase_14 AC 73 ms
71,936 KB
testcase_15 AC 214 ms
75,776 KB
testcase_16 AC 95 ms
75,648 KB
testcase_17 AC 234 ms
76,356 KB
testcase_18 AC 127 ms
75,776 KB
testcase_19 AC 122 ms
75,864 KB
testcase_20 AC 190 ms
75,796 KB
testcase_21 AC 226 ms
76,216 KB
testcase_22 AC 175 ms
76,160 KB
testcase_23 AC 147 ms
76,160 KB
testcase_24 AC 96 ms
76,132 KB
testcase_25 AC 143 ms
75,836 KB
testcase_26 AC 132 ms
75,648 KB
testcase_27 AC 217 ms
75,940 KB
testcase_28 AC 105 ms
75,856 KB
testcase_29 AC 109 ms
76,032 KB
testcase_30 AC 260 ms
75,792 KB
testcase_31 AC 114 ms
76,016 KB
testcase_32 AC 81 ms
73,324 KB
testcase_33 AC 191 ms
76,004 KB
testcase_34 AC 222 ms
76,220 KB
testcase_35 AC 119 ms
75,680 KB
testcase_36 AC 219 ms
76,208 KB
testcase_37 AC 126 ms
75,964 KB
testcase_38 AC 210 ms
76,324 KB
testcase_39 AC 105 ms
76,124 KB
testcase_40 AC 249 ms
76,032 KB
testcase_41 AC 250 ms
76,276 KB
testcase_42 AC 249 ms
75,904 KB
testcase_43 AC 258 ms
75,872 KB
testcase_44 AC 250 ms
75,856 KB
testcase_45 AC 252 ms
75,904 KB
testcase_46 AC 251 ms
75,920 KB
testcase_47 AC 248 ms
76,216 KB
testcase_48 AC 249 ms
75,776 KB
testcase_49 AC 254 ms
75,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 二項定理を思い付くのが重要
# 二項係数とベキ乗の和が出ている→二項定理か? と思いつけなくてはいけない。

import sys
input = sys.stdin.readline
mod=10**9+7

INV=pow(2,mod-2,mod)

T=int(input())
for tests in range(T):
    N,M,X=map(int,input().split())

    ALL=pow(1+M,N,mod)
    H=pow(-1+M,N,mod)

    if (X+N)%2==0:
        print((ALL+H)*INV%mod)
    else:
        print((ALL-H)*INV%mod)
0