結果

問題 No.1258 コインゲーム
ユーザー Kiri8128Kiri8128
提出日時 2020-10-16 21:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-07-20 21:20:16
合計ジャッジ時間 19,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
76,032 KB
testcase_01 AC 191 ms
76,160 KB
testcase_02 AC 133 ms
76,160 KB
testcase_03 AC 391 ms
76,288 KB
testcase_04 AC 427 ms
76,544 KB
testcase_05 AC 152 ms
76,416 KB
testcase_06 AC 340 ms
76,288 KB
testcase_07 AC 123 ms
76,416 KB
testcase_08 AC 119 ms
76,032 KB
testcase_09 AC 218 ms
76,544 KB
testcase_10 AC 387 ms
76,416 KB
testcase_11 AC 421 ms
76,288 KB
testcase_12 AC 345 ms
76,160 KB
testcase_13 AC 167 ms
76,160 KB
testcase_14 AC 123 ms
76,416 KB
testcase_15 AC 380 ms
76,160 KB
testcase_16 AC 149 ms
76,288 KB
testcase_17 AC 423 ms
76,160 KB
testcase_18 AC 221 ms
76,416 KB
testcase_19 AC 210 ms
76,544 KB
testcase_20 AC 335 ms
76,288 KB
testcase_21 AC 402 ms
76,544 KB
testcase_22 AC 310 ms
76,160 KB
testcase_23 AC 253 ms
76,288 KB
testcase_24 AC 155 ms
76,544 KB
testcase_25 AC 252 ms
76,160 KB
testcase_26 AC 228 ms
76,800 KB
testcase_27 AC 403 ms
76,544 KB
testcase_28 AC 179 ms
76,160 KB
testcase_29 AC 182 ms
75,904 KB
testcase_30 AC 464 ms
76,032 KB
testcase_31 AC 185 ms
76,288 KB
testcase_32 AC 132 ms
76,288 KB
testcase_33 AC 330 ms
76,160 KB
testcase_34 AC 414 ms
76,672 KB
testcase_35 AC 196 ms
76,032 KB
testcase_36 AC 391 ms
76,160 KB
testcase_37 AC 208 ms
76,032 KB
testcase_38 AC 376 ms
76,288 KB
testcase_39 AC 175 ms
76,032 KB
testcase_40 AC 462 ms
77,184 KB
testcase_41 AC 465 ms
77,056 KB
testcase_42 AC 472 ms
77,568 KB
testcase_43 AC 465 ms
77,696 KB
testcase_44 AC 471 ms
77,184 KB
testcase_45 AC 467 ms
77,696 KB
testcase_46 AC 465 ms
77,312 KB
testcase_47 AC 465 ms
77,696 KB
testcase_48 AC 466 ms
77,696 KB
testcase_49 AC 473 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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