結果

問題 No.1258 コインゲーム
ユーザー toyuzukotoyuzuko
提出日時 2020-10-16 22:33:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 940 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-20 22:53:58
合計ジャッジ時間 29,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
10,624 KB
testcase_01 AC 253 ms
10,752 KB
testcase_02 AC 104 ms
10,624 KB
testcase_03 AC 744 ms
10,624 KB
testcase_04 AC 820 ms
10,624 KB
testcase_05 AC 155 ms
10,624 KB
testcase_06 AC 614 ms
10,624 KB
testcase_07 AC 81 ms
10,752 KB
testcase_08 AC 73 ms
10,624 KB
testcase_09 AC 312 ms
10,624 KB
testcase_10 AC 737 ms
10,752 KB
testcase_11 AC 805 ms
10,752 KB
testcase_12 AC 590 ms
10,624 KB
testcase_13 AC 199 ms
10,624 KB
testcase_14 AC 78 ms
10,752 KB
testcase_15 AC 703 ms
10,624 KB
testcase_16 AC 158 ms
10,624 KB
testcase_17 AC 794 ms
10,752 KB
testcase_18 AC 360 ms
10,624 KB
testcase_19 AC 283 ms
10,624 KB
testcase_20 AC 592 ms
10,624 KB
testcase_21 AC 762 ms
10,624 KB
testcase_22 AC 533 ms
10,624 KB
testcase_23 AC 403 ms
10,624 KB
testcase_24 AC 162 ms
10,624 KB
testcase_25 AC 379 ms
10,624 KB
testcase_26 AC 325 ms
10,624 KB
testcase_27 AC 739 ms
10,624 KB
testcase_28 AC 218 ms
10,624 KB
testcase_29 AC 227 ms
10,624 KB
testcase_30 AC 901 ms
10,752 KB
testcase_31 AC 243 ms
10,752 KB
testcase_32 AC 120 ms
10,624 KB
testcase_33 AC 615 ms
10,624 KB
testcase_34 AC 764 ms
10,624 KB
testcase_35 AC 277 ms
10,752 KB
testcase_36 AC 765 ms
10,752 KB
testcase_37 AC 300 ms
10,752 KB
testcase_38 AC 696 ms
10,624 KB
testcase_39 AC 215 ms
10,624 KB
testcase_40 AC 903 ms
10,624 KB
testcase_41 AC 919 ms
10,624 KB
testcase_42 AC 940 ms
10,752 KB
testcase_43 AC 907 ms
10,624 KB
testcase_44 AC 907 ms
10,624 KB
testcase_45 AC 931 ms
10,624 KB
testcase_46 AC 908 ms
10,752 KB
testcase_47 AC 910 ms
10,752 KB
testcase_48 AC 912 ms
10,752 KB
testcase_49 AC 915 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

MOD = 1000000007
inv2 = pow(2, MOD - 2, MOD)

S = int(input())

for _ in range(S):
    N, M, X = map(int, input().split())
    p = pow(1 + M, N, MOD)
    q = pow(1 - M, N, MOD)
    if X == 0:
        print((p + q) * inv2 % MOD)
    else:
        print((p - q) * inv2 % MOD)
0