結果

問題 No.1258 コインゲーム
ユーザー 37zigen37zigen
提出日時 2020-12-19 07:32:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,910 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-21 10:07:18
合計ジャッジ時間 57,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 385 ms
10,624 KB
testcase_01 AC 468 ms
10,496 KB
testcase_02 AC 191 ms
10,624 KB
testcase_03 AC 1,489 ms
10,496 KB
testcase_04 AC 1,697 ms
10,624 KB
testcase_05 AC 291 ms
10,496 KB
testcase_06 AC 1,213 ms
10,624 KB
testcase_07 AC 144 ms
10,496 KB
testcase_08 AC 128 ms
10,496 KB
testcase_09 AC 616 ms
10,496 KB
testcase_10 AC 1,466 ms
10,496 KB
testcase_11 AC 1,641 ms
10,496 KB
testcase_12 AC 1,218 ms
10,624 KB
testcase_13 AC 385 ms
10,624 KB
testcase_14 AC 142 ms
10,624 KB
testcase_15 AC 1,451 ms
10,496 KB
testcase_16 AC 309 ms
10,496 KB
testcase_17 AC 1,626 ms
10,496 KB
testcase_18 AC 618 ms
10,624 KB
testcase_19 AC 568 ms
10,496 KB
testcase_20 AC 1,209 ms
10,624 KB
testcase_21 AC 1,558 ms
10,496 KB
testcase_22 AC 1,070 ms
10,624 KB
testcase_23 AC 804 ms
10,496 KB
testcase_24 AC 313 ms
10,496 KB
testcase_25 AC 762 ms
10,624 KB
testcase_26 AC 647 ms
10,496 KB
testcase_27 AC 1,485 ms
10,496 KB
testcase_28 AC 407 ms
10,624 KB
testcase_29 AC 436 ms
10,624 KB
testcase_30 AC 1,844 ms
10,496 KB
testcase_31 AC 487 ms
10,496 KB
testcase_32 AC 224 ms
10,624 KB
testcase_33 AC 1,264 ms
10,496 KB
testcase_34 AC 1,549 ms
10,496 KB
testcase_35 AC 551 ms
10,496 KB
testcase_36 AC 1,500 ms
10,496 KB
testcase_37 AC 602 ms
10,496 KB
testcase_38 AC 1,431 ms
10,624 KB
testcase_39 AC 419 ms
10,496 KB
testcase_40 AC 1,910 ms
10,496 KB
testcase_41 AC 1,884 ms
10,496 KB
testcase_42 AC 1,881 ms
10,496 KB
testcase_43 AC 1,898 ms
10,624 KB
testcase_44 AC 1,878 ms
10,624 KB
testcase_45 AC 1,904 ms
10,496 KB
testcase_46 AC 1,869 ms
10,496 KB
testcase_47 AC 1,865 ms
10,496 KB
testcase_48 AC 1,886 ms
10,624 KB
testcase_49 AC 1,906 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = 10 ** 9 + 7
S = int(input())
for _ in range(S):
    N, M, X = map(int, input().split())
    a = pow(M + 1, N, p)
    b = pow(-M + 1, N, p)
    print((a + b if X == 0 else a - b) * pow(2, p - 2, p) % p)
0