結果

問題 No.1258 コインゲーム
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-17 14:31:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-21 02:24:02
合計ジャッジ時間 20,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
76,032 KB
testcase_01 AC 188 ms
76,288 KB
testcase_02 AC 120 ms
76,032 KB
testcase_03 AC 432 ms
76,460 KB
testcase_04 AC 493 ms
76,288 KB
testcase_05 AC 155 ms
76,032 KB
testcase_06 AC 372 ms
76,252 KB
testcase_07 AC 122 ms
76,032 KB
testcase_08 AC 116 ms
76,416 KB
testcase_09 AC 238 ms
75,904 KB
testcase_10 AC 446 ms
76,160 KB
testcase_11 AC 460 ms
76,240 KB
testcase_12 AC 359 ms
76,160 KB
testcase_13 AC 166 ms
76,160 KB
testcase_14 AC 110 ms
75,904 KB
testcase_15 AC 441 ms
76,288 KB
testcase_16 AC 154 ms
75,904 KB
testcase_17 AC 477 ms
76,160 KB
testcase_18 AC 231 ms
75,880 KB
testcase_19 AC 210 ms
76,032 KB
testcase_20 AC 361 ms
76,416 KB
testcase_21 AC 436 ms
76,288 KB
testcase_22 AC 327 ms
76,480 KB
testcase_23 AC 283 ms
76,160 KB
testcase_24 AC 166 ms
76,148 KB
testcase_25 AC 270 ms
76,156 KB
testcase_26 AC 226 ms
76,032 KB
testcase_27 AC 440 ms
76,288 KB
testcase_28 AC 168 ms
76,032 KB
testcase_29 AC 180 ms
75,960 KB
testcase_30 AC 516 ms
76,236 KB
testcase_31 AC 188 ms
76,288 KB
testcase_32 AC 128 ms
76,544 KB
testcase_33 AC 377 ms
76,544 KB
testcase_34 AC 437 ms
76,288 KB
testcase_35 AC 209 ms
76,032 KB
testcase_36 AC 450 ms
76,032 KB
testcase_37 AC 218 ms
76,160 KB
testcase_38 AC 422 ms
76,032 KB
testcase_39 AC 185 ms
76,288 KB
testcase_40 AC 533 ms
77,440 KB
testcase_41 AC 525 ms
77,440 KB
testcase_42 AC 520 ms
77,696 KB
testcase_43 AC 523 ms
77,616 KB
testcase_44 AC 530 ms
77,480 KB
testcase_45 AC 546 ms
77,608 KB
testcase_46 AC 535 ms
77,092 KB
testcase_47 AC 526 ms
77,824 KB
testcase_48 AC 525 ms
77,568 KB
testcase_49 AC 529 ms
77,312 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