結果

問題 No.1258 コインゲーム
ユーザー trineutrontrineutron
提出日時 2020-10-16 21:47:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,829 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-20 21:24:13
合計ジャッジ時間 55,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 369 ms
10,752 KB
testcase_01 AC 456 ms
10,624 KB
testcase_02 AC 185 ms
10,496 KB
testcase_03 AC 1,423 ms
10,752 KB
testcase_04 AC 1,626 ms
10,624 KB
testcase_05 AC 280 ms
10,624 KB
testcase_06 AC 1,190 ms
10,496 KB
testcase_07 AC 141 ms
10,624 KB
testcase_08 AC 124 ms
10,624 KB
testcase_09 AC 592 ms
10,496 KB
testcase_10 AC 1,427 ms
10,624 KB
testcase_11 AC 1,571 ms
10,624 KB
testcase_12 AC 1,143 ms
10,496 KB
testcase_13 AC 369 ms
10,752 KB
testcase_14 AC 136 ms
10,624 KB
testcase_15 AC 1,413 ms
10,496 KB
testcase_16 AC 291 ms
10,624 KB
testcase_17 AC 1,548 ms
10,624 KB
testcase_18 AC 593 ms
10,624 KB
testcase_19 AC 550 ms
10,496 KB
testcase_20 AC 1,162 ms
10,752 KB
testcase_21 AC 1,472 ms
10,624 KB
testcase_22 AC 1,036 ms
10,624 KB
testcase_23 AC 758 ms
10,624 KB
testcase_24 AC 299 ms
10,624 KB
testcase_25 AC 727 ms
10,624 KB
testcase_26 AC 620 ms
10,752 KB
testcase_27 AC 1,434 ms
10,624 KB
testcase_28 AC 390 ms
10,624 KB
testcase_29 AC 419 ms
10,496 KB
testcase_30 AC 1,793 ms
10,624 KB
testcase_31 AC 459 ms
10,624 KB
testcase_32 AC 217 ms
10,752 KB
testcase_33 AC 1,193 ms
10,624 KB
testcase_34 AC 1,489 ms
10,624 KB
testcase_35 AC 526 ms
10,624 KB
testcase_36 AC 1,453 ms
10,496 KB
testcase_37 AC 577 ms
10,496 KB
testcase_38 AC 1,344 ms
10,752 KB
testcase_39 AC 400 ms
10,624 KB
testcase_40 AC 1,795 ms
10,624 KB
testcase_41 AC 1,803 ms
10,624 KB
testcase_42 AC 1,806 ms
10,624 KB
testcase_43 AC 1,800 ms
10,752 KB
testcase_44 AC 1,827 ms
10,624 KB
testcase_45 AC 1,829 ms
10,624 KB
testcase_46 AC 1,803 ms
10,496 KB
testcase_47 AC 1,790 ms
10,624 KB
testcase_48 AC 1,796 ms
10,496 KB
testcase_49 AC 1,827 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

def solve():
    n, m, x = map(int, input().split())
    t = pow(m + 1, n, mod)
    d = pow(m - 1, n, mod)
    print((t + (1 - (x + n) % 2 * 2) * d) * pow(2, mod - 2, mod) % mod)

s = int(input())
for i in range(s):
    solve()
0