結果

問題 No.1258 コインゲーム
ユーザー uni_pythonuni_python
提出日時 2020-10-18 16:21:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-07-21 06:30:00
合計ジャッジ時間 15,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
76,416 KB
testcase_01 AC 131 ms
76,160 KB
testcase_02 AC 88 ms
74,060 KB
testcase_03 AC 258 ms
76,160 KB
testcase_04 AC 283 ms
75,520 KB
testcase_05 AC 104 ms
75,392 KB
testcase_06 AC 219 ms
76,264 KB
testcase_07 AC 82 ms
71,936 KB
testcase_08 AC 77 ms
71,808 KB
testcase_09 AC 150 ms
76,416 KB
testcase_10 AC 274 ms
76,416 KB
testcase_11 AC 272 ms
76,172 KB
testcase_12 AC 231 ms
76,544 KB
testcase_13 AC 119 ms
76,032 KB
testcase_14 AC 81 ms
72,320 KB
testcase_15 AC 251 ms
75,520 KB
testcase_16 AC 107 ms
75,648 KB
testcase_17 AC 273 ms
76,288 KB
testcase_18 AC 143 ms
75,908 KB
testcase_19 AC 144 ms
76,416 KB
testcase_20 AC 222 ms
75,776 KB
testcase_21 AC 260 ms
76,120 KB
testcase_22 AC 202 ms
75,776 KB
testcase_23 AC 166 ms
75,776 KB
testcase_24 AC 113 ms
76,204 KB
testcase_25 AC 163 ms
76,032 KB
testcase_26 AC 148 ms
76,416 KB
testcase_27 AC 255 ms
76,032 KB
testcase_28 AC 119 ms
75,648 KB
testcase_29 AC 120 ms
75,648 KB
testcase_30 AC 313 ms
75,776 KB
testcase_31 AC 131 ms
76,148 KB
testcase_32 AC 95 ms
76,416 KB
testcase_33 AC 225 ms
76,160 KB
testcase_34 AC 264 ms
76,032 KB
testcase_35 AC 144 ms
75,648 KB
testcase_36 AC 271 ms
76,240 KB
testcase_37 AC 141 ms
76,416 KB
testcase_38 AC 255 ms
76,032 KB
testcase_39 AC 116 ms
76,416 KB
testcase_40 AC 282 ms
76,160 KB
testcase_41 AC 288 ms
75,904 KB
testcase_42 AC 283 ms
76,160 KB
testcase_43 AC 283 ms
75,776 KB
testcase_44 AC 286 ms
76,416 KB
testcase_45 AC 294 ms
76,160 KB
testcase_46 AC 307 ms
75,904 KB
testcase_47 AC 304 ms
76,332 KB
testcase_48 AC 287 ms
76,112 KB
testcase_49 AC 293 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    S=I()
    for _ in range(S):
        N,M,X=MI()
        a=pow((1-M),N,mod)
        b=pow((1+M),N,mod)
        
        
        if X:
            ans=(b-a)*pow(2,mod-2,mod)
        else:
            ans=(a+b)*pow(2,mod-2,mod)
            
        print(ans%mod)
        
        


main()
0