結果

問題 No.1258 コインゲーム
ユーザー tanon710tanon710
提出日時 2020-10-17 00:45:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 78,188 KB
最終ジャッジ日時 2024-07-21 01:35:17
合計ジャッジ時間 19,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
76,756 KB
testcase_01 AC 204 ms
77,308 KB
testcase_02 AC 136 ms
77,312 KB
testcase_03 AC 430 ms
77,696 KB
testcase_04 AC 451 ms
76,672 KB
testcase_05 AC 161 ms
76,416 KB
testcase_06 AC 384 ms
77,572 KB
testcase_07 AC 130 ms
77,568 KB
testcase_08 AC 125 ms
77,440 KB
testcase_09 AC 226 ms
76,928 KB
testcase_10 AC 444 ms
76,964 KB
testcase_11 AC 444 ms
76,648 KB
testcase_12 AC 357 ms
77,736 KB
testcase_13 AC 181 ms
77,056 KB
testcase_14 AC 136 ms
77,848 KB
testcase_15 AC 398 ms
76,740 KB
testcase_16 AC 162 ms
76,788 KB
testcase_17 AC 448 ms
76,672 KB
testcase_18 AC 229 ms
76,544 KB
testcase_19 AC 222 ms
77,624 KB
testcase_20 AC 380 ms
76,800 KB
testcase_21 AC 423 ms
77,312 KB
testcase_22 AC 325 ms
77,568 KB
testcase_23 AC 268 ms
77,424 KB
testcase_24 AC 166 ms
76,672 KB
testcase_25 AC 263 ms
77,028 KB
testcase_26 AC 239 ms
77,084 KB
testcase_27 AC 426 ms
77,568 KB
testcase_28 AC 184 ms
77,624 KB
testcase_29 AC 194 ms
77,304 KB
testcase_30 AC 490 ms
77,380 KB
testcase_31 AC 202 ms
76,544 KB
testcase_32 AC 146 ms
76,492 KB
testcase_33 AC 355 ms
77,428 KB
testcase_34 AC 426 ms
77,696 KB
testcase_35 AC 215 ms
76,544 KB
testcase_36 AC 415 ms
77,436 KB
testcase_37 AC 227 ms
76,732 KB
testcase_38 AC 400 ms
76,672 KB
testcase_39 AC 185 ms
77,496 KB
testcase_40 AC 480 ms
77,568 KB
testcase_41 AC 502 ms
77,752 KB
testcase_42 AC 485 ms
77,696 KB
testcase_43 AC 470 ms
77,952 KB
testcase_44 AC 490 ms
77,900 KB
testcase_45 AC 472 ms
77,756 KB
testcase_46 AC 472 ms
77,312 KB
testcase_47 AC 483 ms
78,188 KB
testcase_48 AC 479 ms
77,696 KB
testcase_49 AC 475 ms
77,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

t=int(input())
for _ in range(t):
    n,m,x=map(int,input().split())
    if (x==0 and n%2==0) or (x==1 and n%2==1):
        ans=pow(m+1,n,mod)+pow(m-1,n,mod)
    else:
        ans=pow(m+1,n,mod)-pow(m-1,n,mod)
    ans*=pow(2,mod-2,mod)
    print(ans%mod)
0