結果

問題 No.1258 コインゲーム
ユーザー marroncastlemarroncastle
提出日時 2020-10-16 22:49:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-20 23:11:01
合計ジャッジ時間 15,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
76,708 KB
testcase_01 AC 146 ms
76,928 KB
testcase_02 AC 104 ms
76,808 KB
testcase_03 AC 311 ms
80,000 KB
testcase_04 AC 339 ms
80,364 KB
testcase_05 AC 120 ms
76,288 KB
testcase_06 AC 268 ms
79,232 KB
testcase_07 AC 106 ms
76,292 KB
testcase_08 AC 95 ms
76,160 KB
testcase_09 AC 170 ms
77,824 KB
testcase_10 AC 305 ms
79,872 KB
testcase_11 AC 336 ms
80,128 KB
testcase_12 AC 261 ms
78,736 KB
testcase_13 AC 134 ms
76,672 KB
testcase_14 AC 95 ms
76,652 KB
testcase_15 AC 297 ms
79,372 KB
testcase_16 AC 120 ms
76,620 KB
testcase_17 AC 328 ms
80,136 KB
testcase_18 AC 170 ms
77,824 KB
testcase_19 AC 163 ms
77,776 KB
testcase_20 AC 263 ms
79,232 KB
testcase_21 AC 316 ms
80,304 KB
testcase_22 AC 250 ms
78,780 KB
testcase_23 AC 197 ms
77,696 KB
testcase_24 AC 122 ms
76,672 KB
testcase_25 AC 196 ms
77,312 KB
testcase_26 AC 186 ms
77,700 KB
testcase_27 AC 310 ms
79,756 KB
testcase_28 AC 137 ms
76,800 KB
testcase_29 AC 143 ms
76,804 KB
testcase_30 AC 363 ms
80,640 KB
testcase_31 AC 149 ms
77,312 KB
testcase_32 AC 110 ms
76,032 KB
testcase_33 AC 269 ms
79,220 KB
testcase_34 AC 313 ms
80,256 KB
testcase_35 AC 160 ms
77,876 KB
testcase_36 AC 309 ms
79,744 KB
testcase_37 AC 166 ms
77,620 KB
testcase_38 AC 294 ms
79,616 KB
testcase_39 AC 138 ms
76,800 KB
testcase_40 AC 367 ms
80,128 KB
testcase_41 AC 364 ms
80,100 KB
testcase_42 AC 369 ms
80,084 KB
testcase_43 AC 364 ms
80,444 KB
testcase_44 AC 370 ms
80,244 KB
testcase_45 AC 377 ms
80,500 KB
testcase_46 AC 375 ms
80,128 KB
testcase_47 AC 369 ms
80,000 KB
testcase_48 AC 366 ms
80,088 KB
testcase_49 AC 368 ms
80,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = int(input())
ans = [0]*S
mod = 10**9+7
for s in range(S):
  N, M, X = map(int, input().split())
  A = pow(1+M,N,mod)
  B = pow(1-M,N,mod)
  if X==0:
    ans[s] = (A+B)*pow(2,mod-2,mod)%mod
  else:
    ans[s] = (A-B)*pow(2,mod-2,mod)%mod
print(*ans, sep='\n')
0