結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
76,160 KB
testcase_01 AC 193 ms
76,416 KB
testcase_02 AC 134 ms
76,416 KB
testcase_03 AC 398 ms
76,544 KB
testcase_04 AC 447 ms
76,288 KB
testcase_05 AC 154 ms
76,672 KB
testcase_06 AC 345 ms
76,800 KB
testcase_07 AC 124 ms
76,544 KB
testcase_08 AC 118 ms
75,904 KB
testcase_09 AC 221 ms
76,160 KB
testcase_10 AC 396 ms
76,672 KB
testcase_11 AC 432 ms
76,288 KB
testcase_12 AC 344 ms
76,160 KB
testcase_13 AC 172 ms
76,672 KB
testcase_14 AC 127 ms
76,416 KB
testcase_15 AC 388 ms
76,288 KB
testcase_16 AC 154 ms
76,416 KB
testcase_17 AC 424 ms
76,160 KB
testcase_18 AC 226 ms
76,544 KB
testcase_19 AC 217 ms
76,160 KB
testcase_20 AC 340 ms
76,288 KB
testcase_21 AC 412 ms
76,288 KB
testcase_22 AC 314 ms
76,288 KB
testcase_23 AC 255 ms
76,416 KB
testcase_24 AC 155 ms
76,288 KB
testcase_25 AC 251 ms
76,416 KB
testcase_26 AC 227 ms
76,416 KB
testcase_27 AC 398 ms
76,416 KB
testcase_28 AC 175 ms
76,288 KB
testcase_29 AC 182 ms
76,288 KB
testcase_30 AC 474 ms
76,160 KB
testcase_31 AC 188 ms
76,160 KB
testcase_32 AC 137 ms
76,288 KB
testcase_33 AC 341 ms
76,288 KB
testcase_34 AC 412 ms
77,056 KB
testcase_35 AC 202 ms
76,288 KB
testcase_36 AC 397 ms
76,288 KB
testcase_37 AC 217 ms
76,672 KB
testcase_38 AC 376 ms
76,160 KB
testcase_39 AC 179 ms
76,160 KB
testcase_40 AC 472 ms
77,312 KB
testcase_41 AC 472 ms
77,440 KB
testcase_42 AC 473 ms
77,440 KB
testcase_43 AC 472 ms
77,696 KB
testcase_44 AC 479 ms
77,440 KB
testcase_45 AC 475 ms
77,696 KB
testcase_46 AC 481 ms
77,312 KB
testcase_47 AC 470 ms
77,312 KB
testcase_48 AC 473 ms
77,312 KB
testcase_49 AC 481 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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