結果

問題 No.1258 コインゲーム
ユーザー c-yanc-yan
提出日時 2020-10-17 00:25:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,027 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-21 01:33:12
合計ジャッジ時間 30,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
10,624 KB
testcase_01 AC 254 ms
10,496 KB
testcase_02 AC 105 ms
10,624 KB
testcase_03 AC 750 ms
10,624 KB
testcase_04 AC 860 ms
10,752 KB
testcase_05 AC 163 ms
10,496 KB
testcase_06 AC 635 ms
10,624 KB
testcase_07 AC 83 ms
10,496 KB
testcase_08 AC 75 ms
10,624 KB
testcase_09 AC 319 ms
10,752 KB
testcase_10 AC 750 ms
10,752 KB
testcase_11 AC 833 ms
10,496 KB
testcase_12 AC 614 ms
10,624 KB
testcase_13 AC 210 ms
10,496 KB
testcase_14 AC 80 ms
10,624 KB
testcase_15 AC 737 ms
10,624 KB
testcase_16 AC 163 ms
10,496 KB
testcase_17 AC 825 ms
10,624 KB
testcase_18 AC 320 ms
10,496 KB
testcase_19 AC 296 ms
10,624 KB
testcase_20 AC 622 ms
10,496 KB
testcase_21 AC 787 ms
10,624 KB
testcase_22 AC 548 ms
10,624 KB
testcase_23 AC 420 ms
10,624 KB
testcase_24 AC 168 ms
10,496 KB
testcase_25 AC 396 ms
10,496 KB
testcase_26 AC 337 ms
10,624 KB
testcase_27 AC 767 ms
10,496 KB
testcase_28 AC 216 ms
10,624 KB
testcase_29 AC 229 ms
10,624 KB
testcase_30 AC 943 ms
10,624 KB
testcase_31 AC 255 ms
10,496 KB
testcase_32 AC 123 ms
10,496 KB
testcase_33 AC 630 ms
10,624 KB
testcase_34 AC 815 ms
10,496 KB
testcase_35 AC 287 ms
10,496 KB
testcase_36 AC 773 ms
10,496 KB
testcase_37 AC 313 ms
10,624 KB
testcase_38 AC 723 ms
10,624 KB
testcase_39 AC 215 ms
10,624 KB
testcase_40 AC 946 ms
10,624 KB
testcase_41 AC 967 ms
10,752 KB
testcase_42 AC 949 ms
10,880 KB
testcase_43 AC 958 ms
10,496 KB
testcase_44 AC 982 ms
10,624 KB
testcase_45 AC 958 ms
10,624 KB
testcase_46 AC 965 ms
10,496 KB
testcase_47 AC 1,027 ms
10,496 KB
testcase_48 AC 947 ms
10,880 KB
testcase_49 AC 951 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline
m = 1000000007

S = int(readline())
div2 = pow(2, m - 2, m)
for _ in range(S):
    N, M, X = map(int, readline().split())
    a = pow(M + 1, N, m)
    b = pow(M - 1, N, m)
    if (N + X) % 2 == 0:
        print((a + b) * div2 % m)
    else:
        print((a - b) * div2 % m)
0