結果

問題 No.1258 コインゲーム
ユーザー realDivineJKrealDivineJK
提出日時 2020-10-16 21:49:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 594 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-20 21:29:47
合計ジャッジ時間 73,651 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 487 ms
10,624 KB
testcase_01 AC 597 ms
10,752 KB
testcase_02 AC 238 ms
10,752 KB
testcase_03 AC 1,915 ms
10,624 KB
testcase_04 TLE -
testcase_05 AC 367 ms
10,624 KB
testcase_06 AC 1,580 ms
10,624 KB
testcase_07 AC 180 ms
10,752 KB
testcase_08 AC 159 ms
10,624 KB
testcase_09 AC 790 ms
10,624 KB
testcase_10 AC 1,904 ms
10,752 KB
testcase_11 TLE -
testcase_12 AC 1,533 ms
10,752 KB
testcase_13 AC 491 ms
10,624 KB
testcase_14 AC 174 ms
10,624 KB
testcase_15 AC 1,859 ms
10,752 KB
testcase_16 AC 387 ms
10,752 KB
testcase_17 TLE -
testcase_18 AC 789 ms
10,624 KB
testcase_19 AC 717 ms
10,752 KB
testcase_20 AC 1,550 ms
10,624 KB
testcase_21 AC 1,987 ms
10,624 KB
testcase_22 AC 1,391 ms
10,752 KB
testcase_23 AC 1,022 ms
10,752 KB
testcase_24 AC 393 ms
10,624 KB
testcase_25 AC 1,007 ms
10,624 KB
testcase_26 AC 845 ms
10,752 KB
testcase_27 AC 1,930 ms
10,624 KB
testcase_28 AC 518 ms
10,752 KB
testcase_29 AC 549 ms
10,752 KB
testcase_30 TLE -
testcase_31 AC 613 ms
10,624 KB
testcase_32 AC 286 ms
10,624 KB
testcase_33 AC 1,598 ms
10,752 KB
testcase_34 AC 1,983 ms
10,752 KB
testcase_35 AC 708 ms
10,624 KB
testcase_36 AC 1,950 ms
10,624 KB
testcase_37 AC 779 ms
10,624 KB
testcase_38 AC 1,846 ms
10,624 KB
testcase_39 AC 526 ms
10,880 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = int(input())
mod = int(1e9) + 7
def doubling(n, m):
    y = 1
    bas = n
    tmp = m
    while tmp:
        if tmp % 2:
            y *= bas
            y %= mod
        bas *= bas
        bas %= mod
        tmp >>= 1
    return y
def inved(a):
    x, y, u, v, k, l = 1, 0, 0, 1, a, mod
    while l:
        x, y, u, v, k, l = u, v, x - u * (k // l), y - v * (k // l), l, k % l
    return x
i2 = inved(2) % mod
for _ in range(S):
    N, M, X = map(int, input().split())
    sign = 1
    if (N + X) % 2 == 1:
        sign = mod - 1
    print(i2*(doubling(M+1, N)+sign*doubling(M-1, N))%mod)
0