結果

問題 No.1258 コインゲーム
ユーザー qibqib
提出日時 2023-05-08 12:12:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 77,676 KB
最終ジャッジ日時 2024-11-25 05:46:06
合計ジャッジ時間 21,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
77,180 KB
testcase_01 AC 184 ms
77,320 KB
testcase_02 AC 119 ms
77,400 KB
testcase_03 AC 405 ms
77,396 KB
testcase_04 AC 457 ms
77,272 KB
testcase_05 AC 142 ms
77,336 KB
testcase_06 AC 358 ms
76,908 KB
testcase_07 AC 105 ms
76,668 KB
testcase_08 AC 105 ms
77,060 KB
testcase_09 AC 216 ms
76,984 KB
testcase_10 AC 416 ms
77,460 KB
testcase_11 AC 452 ms
77,016 KB
testcase_12 AC 348 ms
77,064 KB
testcase_13 AC 164 ms
76,984 KB
testcase_14 AC 109 ms
77,164 KB
testcase_15 AC 407 ms
77,080 KB
testcase_16 AC 143 ms
77,384 KB
testcase_17 AC 428 ms
76,736 KB
testcase_18 AC 221 ms
77,052 KB
testcase_19 AC 207 ms
76,916 KB
testcase_20 AC 352 ms
77,000 KB
testcase_21 AC 421 ms
77,176 KB
testcase_22 AC 315 ms
77,580 KB
testcase_23 AC 252 ms
77,260 KB
testcase_24 AC 144 ms
77,312 KB
testcase_25 AC 251 ms
76,784 KB
testcase_26 AC 227 ms
77,040 KB
testcase_27 AC 403 ms
77,364 KB
testcase_28 AC 165 ms
76,996 KB
testcase_29 AC 172 ms
76,944 KB
testcase_30 AC 499 ms
76,940 KB
testcase_31 AC 187 ms
76,832 KB
testcase_32 AC 123 ms
76,868 KB
testcase_33 AC 354 ms
77,008 KB
testcase_34 AC 428 ms
77,676 KB
testcase_35 AC 201 ms
77,056 KB
testcase_36 AC 419 ms
77,040 KB
testcase_37 AC 206 ms
76,852 KB
testcase_38 AC 392 ms
77,428 KB
testcase_39 AC 166 ms
77,300 KB
testcase_40 AC 496 ms
77,328 KB
testcase_41 AC 546 ms
77,388 KB
testcase_42 AC 507 ms
77,308 KB
testcase_43 AC 518 ms
77,100 KB
testcase_44 AC 479 ms
77,052 KB
testcase_45 AC 498 ms
77,296 KB
testcase_46 AC 493 ms
77,176 KB
testcase_47 AC 499 ms
77,504 KB
testcase_48 AC 502 ms
77,340 KB
testcase_49 AC 504 ms
77,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

s = int(input())

sgn = [1, -1]

for _ in range(s):
  n, m, x = map(int, input().split())
  i2 = pow(2, MOD - 2, MOD)
  ans = (pow(1 + m, n, MOD) + sgn[x] * pow(1 - m, n, MOD)) % MOD
  ans = (ans * i2) % MOD
  print(ans)
0