結果

問題 No.1258 コインゲーム
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2022-04-25 19:23:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-06-27 14:40:57
合計ジャッジ時間 23,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
75,904 KB
testcase_01 AC 205 ms
76,160 KB
testcase_02 AC 141 ms
76,416 KB
testcase_03 AC 447 ms
76,416 KB
testcase_04 AC 496 ms
76,800 KB
testcase_05 AC 160 ms
75,776 KB
testcase_06 AC 388 ms
76,160 KB
testcase_07 AC 128 ms
76,160 KB
testcase_08 AC 122 ms
76,288 KB
testcase_09 AC 240 ms
76,416 KB
testcase_10 AC 450 ms
76,416 KB
testcase_11 AC 483 ms
76,416 KB
testcase_12 AC 383 ms
76,160 KB
testcase_13 AC 183 ms
76,160 KB
testcase_14 AC 130 ms
76,160 KB
testcase_15 AC 430 ms
76,032 KB
testcase_16 AC 168 ms
75,904 KB
testcase_17 AC 477 ms
76,032 KB
testcase_18 AC 243 ms
76,288 KB
testcase_19 AC 233 ms
76,032 KB
testcase_20 AC 382 ms
76,416 KB
testcase_21 AC 459 ms
76,416 KB
testcase_22 AC 349 ms
76,160 KB
testcase_23 AC 284 ms
76,160 KB
testcase_24 AC 169 ms
76,032 KB
testcase_25 AC 275 ms
76,160 KB
testcase_26 AC 247 ms
76,416 KB
testcase_27 AC 450 ms
75,904 KB
testcase_28 AC 192 ms
75,904 KB
testcase_29 AC 197 ms
76,416 KB
testcase_30 AC 526 ms
76,032 KB
testcase_31 AC 206 ms
76,160 KB
testcase_32 AC 143 ms
75,904 KB
testcase_33 AC 386 ms
76,160 KB
testcase_34 AC 464 ms
76,160 KB
testcase_35 AC 225 ms
76,288 KB
testcase_36 AC 455 ms
76,416 KB
testcase_37 AC 236 ms
76,160 KB
testcase_38 AC 429 ms
76,160 KB
testcase_39 AC 197 ms
76,416 KB
testcase_40 AC 538 ms
77,568 KB
testcase_41 AC 545 ms
77,440 KB
testcase_42 AC 545 ms
77,568 KB
testcase_43 AC 547 ms
78,080 KB
testcase_44 AC 555 ms
78,208 KB
testcase_45 AC 543 ms
77,696 KB
testcase_46 AC 542 ms
77,696 KB
testcase_47 AC 538 ms
77,312 KB
testcase_48 AC 546 ms
77,824 KB
testcase_49 AC 553 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = int(input())
mod = 1000000007

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