結果

問題 No.1258 コインゲーム
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-17 14:31:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,898 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-21 02:25:24
合計ジャッジ時間 57,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 374 ms
10,624 KB
testcase_01 AC 471 ms
10,496 KB
testcase_02 AC 189 ms
10,496 KB
testcase_03 AC 1,487 ms
10,496 KB
testcase_04 AC 1,665 ms
10,496 KB
testcase_05 AC 290 ms
10,624 KB
testcase_06 AC 1,221 ms
10,496 KB
testcase_07 AC 144 ms
10,624 KB
testcase_08 AC 127 ms
10,624 KB
testcase_09 AC 617 ms
10,496 KB
testcase_10 AC 1,474 ms
10,496 KB
testcase_11 AC 1,619 ms
10,624 KB
testcase_12 AC 1,194 ms
10,624 KB
testcase_13 AC 384 ms
10,752 KB
testcase_14 AC 140 ms
10,624 KB
testcase_15 AC 1,432 ms
10,624 KB
testcase_16 AC 302 ms
10,624 KB
testcase_17 AC 1,618 ms
10,496 KB
testcase_18 AC 617 ms
10,624 KB
testcase_19 AC 561 ms
10,624 KB
testcase_20 AC 1,199 ms
10,752 KB
testcase_21 AC 1,538 ms
10,624 KB
testcase_22 AC 1,054 ms
10,496 KB
testcase_23 AC 787 ms
10,624 KB
testcase_24 AC 309 ms
10,496 KB
testcase_25 AC 759 ms
10,496 KB
testcase_26 AC 647 ms
10,624 KB
testcase_27 AC 1,475 ms
10,624 KB
testcase_28 AC 399 ms
10,624 KB
testcase_29 AC 437 ms
10,496 KB
testcase_30 AC 1,852 ms
10,624 KB
testcase_31 AC 473 ms
10,752 KB
testcase_32 AC 222 ms
10,624 KB
testcase_33 AC 1,263 ms
10,496 KB
testcase_34 AC 1,540 ms
10,624 KB
testcase_35 AC 547 ms
10,496 KB
testcase_36 AC 1,487 ms
10,752 KB
testcase_37 AC 593 ms
10,496 KB
testcase_38 AC 1,411 ms
10,496 KB
testcase_39 AC 409 ms
10,496 KB
testcase_40 AC 1,894 ms
10,496 KB
testcase_41 AC 1,895 ms
10,496 KB
testcase_42 AC 1,882 ms
10,496 KB
testcase_43 AC 1,888 ms
10,496 KB
testcase_44 AC 1,876 ms
10,496 KB
testcase_45 AC 1,895 ms
10,624 KB
testcase_46 AC 1,868 ms
10,496 KB
testcase_47 AC 1,888 ms
10,496 KB
testcase_48 AC 1,898 ms
10,624 KB
testcase_49 AC 1,872 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=10**9+7
for _ in range(int(input())):n,m,x=map(int,input().split());print(((1-(x+n)%2*2)*pow(m-1,n,M)+pow(m+1,n,M))*pow(2,M-2,M)%M)
0