結果

問題 No.1258 コインゲーム
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2023-04-12 00:29:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-10-07 20:08:21
合計ジャッジ時間 21,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
76,416 KB
testcase_01 AC 188 ms
75,904 KB
testcase_02 AC 123 ms
76,416 KB
testcase_03 AC 424 ms
76,188 KB
testcase_04 AC 489 ms
76,164 KB
testcase_05 AC 137 ms
76,492 KB
testcase_06 AC 358 ms
76,176 KB
testcase_07 AC 106 ms
76,416 KB
testcase_08 AC 101 ms
76,024 KB
testcase_09 AC 210 ms
75,904 KB
testcase_10 AC 424 ms
75,904 KB
testcase_11 AC 438 ms
76,544 KB
testcase_12 AC 368 ms
76,724 KB
testcase_13 AC 175 ms
75,904 KB
testcase_14 AC 110 ms
76,172 KB
testcase_15 AC 410 ms
75,776 KB
testcase_16 AC 158 ms
75,776 KB
testcase_17 AC 453 ms
76,032 KB
testcase_18 AC 208 ms
75,904 KB
testcase_19 AC 199 ms
76,500 KB
testcase_20 AC 336 ms
76,032 KB
testcase_21 AC 433 ms
76,708 KB
testcase_22 AC 311 ms
76,292 KB
testcase_23 AC 261 ms
76,032 KB
testcase_24 AC 142 ms
76,032 KB
testcase_25 AC 245 ms
76,032 KB
testcase_26 AC 216 ms
76,696 KB
testcase_27 AC 408 ms
76,032 KB
testcase_28 AC 163 ms
76,304 KB
testcase_29 AC 191 ms
76,240 KB
testcase_30 AC 512 ms
76,544 KB
testcase_31 AC 180 ms
76,316 KB
testcase_32 AC 133 ms
76,280 KB
testcase_33 AC 362 ms
76,416 KB
testcase_34 AC 422 ms
76,032 KB
testcase_35 AC 200 ms
76,032 KB
testcase_36 AC 450 ms
75,904 KB
testcase_37 AC 200 ms
75,776 KB
testcase_38 AC 389 ms
75,904 KB
testcase_39 AC 163 ms
76,032 KB
testcase_40 AC 481 ms
77,596 KB
testcase_41 AC 532 ms
77,824 KB
testcase_42 AC 486 ms
77,824 KB
testcase_43 AC 488 ms
77,696 KB
testcase_44 AC 499 ms
77,568 KB
testcase_45 AC 512 ms
77,596 KB
testcase_46 AC 492 ms
77,184 KB
testcase_47 AC 491 ms
77,312 KB
testcase_48 AC 508 ms
77,696 KB
testcase_49 AC 518 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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