結果

問題 No.1258 コインゲーム
ユーザー hir355hir355
提出日時 2020-10-16 23:06:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 78,048 KB
最終ジャッジ日時 2024-07-20 23:37:05
合計ジャッジ時間 20,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
76,744 KB
testcase_01 AC 210 ms
76,484 KB
testcase_02 AC 136 ms
76,560 KB
testcase_03 AC 452 ms
76,600 KB
testcase_04 AC 502 ms
76,780 KB
testcase_05 AC 161 ms
76,688 KB
testcase_06 AC 388 ms
77,072 KB
testcase_07 AC 130 ms
76,592 KB
testcase_08 AC 124 ms
76,540 KB
testcase_09 AC 243 ms
76,664 KB
testcase_10 AC 444 ms
76,704 KB
testcase_11 AC 487 ms
76,508 KB
testcase_12 AC 383 ms
76,748 KB
testcase_13 AC 186 ms
76,348 KB
testcase_14 AC 131 ms
76,396 KB
testcase_15 AC 433 ms
76,588 KB
testcase_16 AC 172 ms
76,692 KB
testcase_17 AC 491 ms
76,676 KB
testcase_18 AC 239 ms
76,348 KB
testcase_19 AC 234 ms
77,088 KB
testcase_20 AC 380 ms
76,944 KB
testcase_21 AC 456 ms
76,600 KB
testcase_22 AC 349 ms
76,452 KB
testcase_23 AC 282 ms
76,608 KB
testcase_24 AC 166 ms
76,452 KB
testcase_25 AC 276 ms
76,652 KB
testcase_26 AC 255 ms
76,900 KB
testcase_27 AC 450 ms
76,496 KB
testcase_28 AC 194 ms
76,512 KB
testcase_29 AC 200 ms
76,840 KB
testcase_30 AC 530 ms
76,808 KB
testcase_31 AC 208 ms
76,684 KB
testcase_32 AC 145 ms
76,760 KB
testcase_33 AC 388 ms
77,020 KB
testcase_34 AC 457 ms
76,732 KB
testcase_35 AC 224 ms
76,524 KB
testcase_36 AC 450 ms
76,600 KB
testcase_37 AC 243 ms
76,808 KB
testcase_38 AC 433 ms
76,500 KB
testcase_39 AC 197 ms
77,024 KB
testcase_40 AC 524 ms
77,768 KB
testcase_41 AC 522 ms
77,760 KB
testcase_42 AC 522 ms
77,736 KB
testcase_43 AC 526 ms
77,820 KB
testcase_44 AC 525 ms
77,840 KB
testcase_45 AC 526 ms
78,048 KB
testcase_46 AC 520 ms
77,592 KB
testcase_47 AC 527 ms
77,636 KB
testcase_48 AC 524 ms
77,800 KB
testcase_49 AC 530 ms
77,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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