結果

問題 No.1258 コインゲーム
ユーザー H3PO4H3PO4
提出日時 2022-02-03 09:12:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-11 09:43:03
合計ジャッジ時間 31,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
10,880 KB
testcase_01 AC 234 ms
10,752 KB
testcase_02 AC 100 ms
10,880 KB
testcase_03 AC 712 ms
10,880 KB
testcase_04 AC 814 ms
10,752 KB
testcase_05 AC 152 ms
10,752 KB
testcase_06 AC 591 ms
10,752 KB
testcase_07 AC 79 ms
10,880 KB
testcase_08 AC 72 ms
10,752 KB
testcase_09 AC 311 ms
10,752 KB
testcase_10 AC 710 ms
10,752 KB
testcase_11 AC 944 ms
10,752 KB
testcase_12 AC 689 ms
10,752 KB
testcase_13 AC 191 ms
10,752 KB
testcase_14 AC 77 ms
10,880 KB
testcase_15 AC 703 ms
10,880 KB
testcase_16 AC 154 ms
10,752 KB
testcase_17 AC 773 ms
10,752 KB
testcase_18 AC 300 ms
10,752 KB
testcase_19 AC 278 ms
10,752 KB
testcase_20 AC 580 ms
10,880 KB
testcase_21 AC 736 ms
10,752 KB
testcase_22 AC 517 ms
10,752 KB
testcase_23 AC 403 ms
10,752 KB
testcase_24 AC 168 ms
10,752 KB
testcase_25 AC 370 ms
10,880 KB
testcase_26 AC 318 ms
10,880 KB
testcase_27 AC 714 ms
10,752 KB
testcase_28 AC 200 ms
10,752 KB
testcase_29 AC 219 ms
10,752 KB
testcase_30 AC 887 ms
10,752 KB
testcase_31 AC 239 ms
10,752 KB
testcase_32 AC 118 ms
10,880 KB
testcase_33 AC 598 ms
10,880 KB
testcase_34 AC 740 ms
10,880 KB
testcase_35 AC 273 ms
10,752 KB
testcase_36 AC 729 ms
10,880 KB
testcase_37 AC 296 ms
10,752 KB
testcase_38 AC 698 ms
10,752 KB
testcase_39 AC 208 ms
10,880 KB
testcase_40 AC 880 ms
10,752 KB
testcase_41 AC 878 ms
10,752 KB
testcase_42 AC 882 ms
10,880 KB
testcase_43 AC 908 ms
10,752 KB
testcase_44 AC 902 ms
10,752 KB
testcase_45 AC 898 ms
10,752 KB
testcase_46 AC 879 ms
10,880 KB
testcase_47 AC 885 ms
10,752 KB
testcase_48 AC 879 ms
10,752 KB
testcase_49 AC 893 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

MOD = 1_000_000_007
p2 = pow(2, -1, MOD)


def solve(N, M, X):
    p = pow(1 + M, N, MOD)
    m = pow(1 - M, N, MOD)
    return (p - m) * p2 % MOD if X else (p + m) * p2 % MOD


S = int(input())
for _ in range(S):
    print(solve(*map(int, input().split())))
0