結果

問題 No.1258 コインゲーム
ユーザー mkawa2mkawa2
提出日時 2021-11-05 13:43:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,042 ms / 2,000 ms
コード長 877 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-06 03:36:33
合計ジャッジ時間 33,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
10,880 KB
testcase_01 AC 271 ms
10,880 KB
testcase_02 AC 118 ms
10,752 KB
testcase_03 AC 829 ms
10,752 KB
testcase_04 AC 933 ms
10,752 KB
testcase_05 AC 171 ms
10,752 KB
testcase_06 AC 681 ms
10,880 KB
testcase_07 AC 92 ms
11,008 KB
testcase_08 AC 83 ms
10,752 KB
testcase_09 AC 349 ms
10,880 KB
testcase_10 AC 814 ms
10,752 KB
testcase_11 AC 908 ms
10,880 KB
testcase_12 AC 667 ms
10,880 KB
testcase_13 AC 224 ms
10,880 KB
testcase_14 AC 91 ms
10,880 KB
testcase_15 AC 790 ms
10,752 KB
testcase_16 AC 180 ms
10,752 KB
testcase_17 AC 895 ms
10,880 KB
testcase_18 AC 348 ms
10,880 KB
testcase_19 AC 319 ms
10,880 KB
testcase_20 AC 673 ms
10,880 KB
testcase_21 AC 853 ms
10,880 KB
testcase_22 AC 599 ms
10,752 KB
testcase_23 AC 449 ms
10,880 KB
testcase_24 AC 185 ms
11,008 KB
testcase_25 AC 427 ms
10,880 KB
testcase_26 AC 371 ms
10,752 KB
testcase_27 AC 822 ms
10,752 KB
testcase_28 AC 235 ms
10,880 KB
testcase_29 AC 251 ms
10,880 KB
testcase_30 AC 1,021 ms
10,880 KB
testcase_31 AC 274 ms
10,752 KB
testcase_32 AC 137 ms
10,752 KB
testcase_33 AC 693 ms
10,752 KB
testcase_34 AC 855 ms
10,752 KB
testcase_35 AC 316 ms
10,752 KB
testcase_36 AC 836 ms
10,752 KB
testcase_37 AC 340 ms
10,880 KB
testcase_38 AC 786 ms
10,752 KB
testcase_39 AC 239 ms
10,880 KB
testcase_40 AC 1,041 ms
10,880 KB
testcase_41 AC 1,034 ms
10,880 KB
testcase_42 AC 1,030 ms
10,752 KB
testcase_43 AC 1,033 ms
10,752 KB
testcase_44 AC 1,042 ms
10,880 KB
testcase_45 AC 1,033 ms
10,880 KB
testcase_46 AC 1,033 ms
10,752 KB
testcase_47 AC 1,027 ms
10,880 KB
testcase_48 AC 1,037 ms
10,880 KB
testcase_49 AC 1,037 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n", end="\n\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 18446744073709551615
# inf = 4294967295
md = 10**9+7
# md = 998244353

def solve():
    n, m, x = LI()
    s = pow(m+1, n, md)
    t = pow(m-1, n, md)
    if n & 1 == x:
        print((s+t)*inv%md)
    else:
        print((s-t)*inv%md)

inv = (1+md)//2
for _ in range(II()):
    solve()
0