結果

問題 No.1258 コインゲーム
ユーザー 👑 KazunKazun
提出日時 2020-10-16 22:08:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,572 KB
最終ジャッジ日時 2024-07-20 21:53:58
合計ジャッジ時間 11,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
76,032 KB
testcase_01 AC 123 ms
75,904 KB
testcase_02 AC 93 ms
71,712 KB
testcase_03 AC 216 ms
75,964 KB
testcase_04 AC 219 ms
76,032 KB
testcase_05 AC 97 ms
76,032 KB
testcase_06 AC 179 ms
76,032 KB
testcase_07 AC 75 ms
70,784 KB
testcase_08 AC 74 ms
70,272 KB
testcase_09 AC 124 ms
76,092 KB
testcase_10 AC 206 ms
76,332 KB
testcase_11 AC 218 ms
76,088 KB
testcase_12 AC 174 ms
76,288 KB
testcase_13 AC 102 ms
76,032 KB
testcase_14 AC 73 ms
70,344 KB
testcase_15 AC 212 ms
76,032 KB
testcase_16 AC 99 ms
75,824 KB
testcase_17 AC 220 ms
75,904 KB
testcase_18 AC 123 ms
76,032 KB
testcase_19 AC 120 ms
75,928 KB
testcase_20 AC 180 ms
76,032 KB
testcase_21 AC 205 ms
75,892 KB
testcase_22 AC 170 ms
75,920 KB
testcase_23 AC 147 ms
75,920 KB
testcase_24 AC 93 ms
73,984 KB
testcase_25 AC 145 ms
76,312 KB
testcase_26 AC 132 ms
76,228 KB
testcase_27 AC 204 ms
76,032 KB
testcase_28 AC 106 ms
76,024 KB
testcase_29 AC 108 ms
76,272 KB
testcase_30 AC 239 ms
75,904 KB
testcase_31 AC 112 ms
75,900 KB
testcase_32 AC 81 ms
72,012 KB
testcase_33 AC 181 ms
76,288 KB
testcase_34 AC 214 ms
76,032 KB
testcase_35 AC 116 ms
75,892 KB
testcase_36 AC 203 ms
76,032 KB
testcase_37 AC 120 ms
76,032 KB
testcase_38 AC 194 ms
75,832 KB
testcase_39 AC 107 ms
76,328 KB
testcase_40 AC 238 ms
75,964 KB
testcase_41 AC 234 ms
76,288 KB
testcase_42 AC 235 ms
76,080 KB
testcase_43 AC 237 ms
76,336 KB
testcase_44 AC 236 ms
76,572 KB
testcase_45 AC 231 ms
76,288 KB
testcase_46 AC 232 ms
76,160 KB
testcase_47 AC 237 ms
75,996 KB
testcase_48 AC 236 ms
76,012 KB
testcase_49 AC 239 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.buffer.readline
S=int(input())
Mod=10**9+7
inv_2=pow(2,Mod-2,Mod)

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

    alpha=pow(1+M,N,Mod)
    beta =pow(1-M,N,Mod)
    gamma=alpha+pow(-1,X,Mod)*beta

    print((gamma*inv_2)%Mod)
0