結果

問題 No.1258 コインゲーム
ユーザー AEnAEn
提出日時 2022-09-02 00:18:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 77,864 KB
最終ジャッジ日時 2024-11-14 16:41:21
合計ジャッジ時間 19,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
76,520 KB
testcase_01 AC 167 ms
76,312 KB
testcase_02 AC 116 ms
76,168 KB
testcase_03 AC 377 ms
76,332 KB
testcase_04 AC 416 ms
76,220 KB
testcase_05 AC 133 ms
76,100 KB
testcase_06 AC 328 ms
76,244 KB
testcase_07 AC 110 ms
76,288 KB
testcase_08 AC 101 ms
76,228 KB
testcase_09 AC 199 ms
76,424 KB
testcase_10 AC 373 ms
76,344 KB
testcase_11 AC 402 ms
76,616 KB
testcase_12 AC 313 ms
76,380 KB
testcase_13 AC 155 ms
76,232 KB
testcase_14 AC 106 ms
76,428 KB
testcase_15 AC 362 ms
76,592 KB
testcase_16 AC 134 ms
76,152 KB
testcase_17 AC 399 ms
76,212 KB
testcase_18 AC 209 ms
76,648 KB
testcase_19 AC 197 ms
76,708 KB
testcase_20 AC 319 ms
76,096 KB
testcase_21 AC 384 ms
76,360 KB
testcase_22 AC 292 ms
76,300 KB
testcase_23 AC 237 ms
76,248 KB
testcase_24 AC 138 ms
76,632 KB
testcase_25 AC 228 ms
76,704 KB
testcase_26 AC 205 ms
76,576 KB
testcase_27 AC 373 ms
76,304 KB
testcase_28 AC 158 ms
76,092 KB
testcase_29 AC 165 ms
76,096 KB
testcase_30 AC 447 ms
76,288 KB
testcase_31 AC 172 ms
76,524 KB
testcase_32 AC 118 ms
76,576 KB
testcase_33 AC 321 ms
76,444 KB
testcase_34 AC 382 ms
76,284 KB
testcase_35 AC 185 ms
76,296 KB
testcase_36 AC 376 ms
76,096 KB
testcase_37 AC 197 ms
76,512 KB
testcase_38 AC 356 ms
76,488 KB
testcase_39 AC 159 ms
76,100 KB
testcase_40 AC 441 ms
77,632 KB
testcase_41 AC 441 ms
77,324 KB
testcase_42 AC 448 ms
77,692 KB
testcase_43 AC 446 ms
77,840 KB
testcase_44 AC 441 ms
77,472 KB
testcase_45 AC 445 ms
77,864 KB
testcase_46 AC 449 ms
77,840 KB
testcase_47 AC 449 ms
77,632 KB
testcase_48 AC 450 ms
77,520 KB
testcase_49 AC 446 ms
77,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = int(input())
mod = 10**9+7
inv = pow(2, mod-2, mod)
for i in range(S):
    N, M, X = map(int,input().split())
    a = pow(M+1, N, mod)
    b = pow(1-M, N, mod)
    c = (a+b)%mod
    c *= inv
    c %= mod
    if X==0:
        print(c)
    else:
        print((a-c)%mod)
0