結果

問題 No.1258 コインゲーム
ユーザー realDivineJKrealDivineJK
提出日時 2020-10-16 21:53:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 78,320 KB
最終ジャッジ日時 2024-07-20 21:37:22
合計ジャッジ時間 18,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
77,952 KB
testcase_01 AC 192 ms
77,696 KB
testcase_02 AC 158 ms
77,696 KB
testcase_03 AC 370 ms
77,568 KB
testcase_04 AC 408 ms
77,568 KB
testcase_05 AC 158 ms
78,080 KB
testcase_06 AC 306 ms
77,952 KB
testcase_07 AC 136 ms
77,524 KB
testcase_08 AC 149 ms
77,568 KB
testcase_09 AC 219 ms
77,568 KB
testcase_10 AC 365 ms
77,952 KB
testcase_11 AC 394 ms
77,612 KB
testcase_12 AC 318 ms
77,696 KB
testcase_13 AC 190 ms
77,784 KB
testcase_14 AC 149 ms
77,568 KB
testcase_15 AC 356 ms
77,952 KB
testcase_16 AC 174 ms
77,652 KB
testcase_17 AC 393 ms
77,952 KB
testcase_18 AC 230 ms
78,320 KB
testcase_19 AC 220 ms
77,696 KB
testcase_20 AC 321 ms
77,696 KB
testcase_21 AC 380 ms
77,568 KB
testcase_22 AC 305 ms
77,568 KB
testcase_23 AC 263 ms
77,952 KB
testcase_24 AC 178 ms
77,600 KB
testcase_25 AC 248 ms
77,824 KB
testcase_26 AC 219 ms
77,568 KB
testcase_27 AC 354 ms
77,696 KB
testcase_28 AC 192 ms
77,696 KB
testcase_29 AC 193 ms
77,952 KB
testcase_30 AC 427 ms
77,696 KB
testcase_31 AC 201 ms
77,952 KB
testcase_32 AC 158 ms
77,696 KB
testcase_33 AC 309 ms
77,952 KB
testcase_34 AC 378 ms
77,700 KB
testcase_35 AC 213 ms
77,696 KB
testcase_36 AC 364 ms
77,696 KB
testcase_37 AC 233 ms
77,696 KB
testcase_38 AC 360 ms
77,824 KB
testcase_39 AC 190 ms
77,696 KB
testcase_40 AC 406 ms
77,160 KB
testcase_41 AC 402 ms
76,876 KB
testcase_42 AC 405 ms
77,056 KB
testcase_43 AC 400 ms
76,960 KB
testcase_44 AC 403 ms
77,152 KB
testcase_45 AC 403 ms
77,392 KB
testcase_46 AC 403 ms
77,292 KB
testcase_47 AC 406 ms
76,928 KB
testcase_48 AC 398 ms
77,492 KB
testcase_49 AC 407 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

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