結果

問題 No.1258 コインゲーム
ユーザー donutholedonuthole
提出日時 2020-10-17 00:52:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,385 ms / 2,000 ms
コード長 884 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-21 01:36:07
合計ジャッジ時間 43,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
12,800 KB
testcase_01 AC 364 ms
12,544 KB
testcase_02 AC 162 ms
12,672 KB
testcase_03 AC 1,091 ms
12,672 KB
testcase_04 AC 1,237 ms
12,672 KB
testcase_05 AC 237 ms
12,800 KB
testcase_06 AC 908 ms
12,672 KB
testcase_07 AC 132 ms
12,672 KB
testcase_08 AC 119 ms
12,672 KB
testcase_09 AC 471 ms
12,672 KB
testcase_10 AC 1,084 ms
12,672 KB
testcase_11 AC 1,206 ms
12,544 KB
testcase_12 AC 888 ms
12,672 KB
testcase_13 AC 302 ms
12,544 KB
testcase_14 AC 128 ms
12,672 KB
testcase_15 AC 1,057 ms
12,672 KB
testcase_16 AC 246 ms
12,544 KB
testcase_17 AC 1,182 ms
12,672 KB
testcase_18 AC 468 ms
12,544 KB
testcase_19 AC 436 ms
12,416 KB
testcase_20 AC 889 ms
12,800 KB
testcase_21 AC 1,146 ms
12,800 KB
testcase_22 AC 806 ms
12,544 KB
testcase_23 AC 603 ms
12,672 KB
testcase_24 AC 252 ms
12,544 KB
testcase_25 AC 572 ms
12,672 KB
testcase_26 AC 497 ms
12,672 KB
testcase_27 AC 1,098 ms
12,800 KB
testcase_28 AC 316 ms
12,544 KB
testcase_29 AC 337 ms
12,672 KB
testcase_30 AC 1,356 ms
12,672 KB
testcase_31 AC 367 ms
12,672 KB
testcase_32 AC 188 ms
12,672 KB
testcase_33 AC 917 ms
12,672 KB
testcase_34 AC 1,135 ms
12,544 KB
testcase_35 AC 421 ms
12,544 KB
testcase_36 AC 1,110 ms
12,544 KB
testcase_37 AC 460 ms
12,672 KB
testcase_38 AC 1,048 ms
12,672 KB
testcase_39 AC 323 ms
12,672 KB
testcase_40 AC 1,378 ms
12,672 KB
testcase_41 AC 1,381 ms
12,544 KB
testcase_42 AC 1,378 ms
12,544 KB
testcase_43 AC 1,375 ms
12,672 KB
testcase_44 AC 1,380 ms
12,544 KB
testcase_45 AC 1,381 ms
12,800 KB
testcase_46 AC 1,383 ms
12,672 KB
testcase_47 AC 1,381 ms
12,544 KB
testcase_48 AC 1,385 ms
12,800 KB
testcase_49 AC 1,385 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys

# import re
import math
import collections
# import decimal
import bisect
import itertools
import fractions
# import functools
import copy
import heapq
import decimal
# import statistics
import queue
# import numpy as np

# sys.setrecursionlimit(10000001)
INF = 10 ** 20
MOD = 10 ** 9 + 7
# MOD = 998244353


def ni(): return int(sys.stdin.buffer.readline())
def ns(): return map(int, sys.stdin.buffer.readline().split())
def na(): return list(map(int, sys.stdin.buffer.readline().split()))


# ===CODE===

def main():
    s = ni()
    for _ in range(s):
        n, m, x = ns()
        a = pow(1+m, n, MOD)
        b = pow(-1+m, n, MOD)
        if n%2:
            tmp = a+b if x else a-b
        else:
            tmp = a-b if x else a+b

        div = pow(2,MOD-2,MOD)
        ans = tmp*div % MOD
        print(ans)


if __name__ == '__main__':
    main()
0