結果

問題 No.1258 コインゲーム
ユーザー tamatotamato
提出日時 2020-10-16 21:35:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,708 KB
最終ジャッジ日時 2024-07-20 21:14:28
合計ジャッジ時間 11,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    two_inv = (mod + 1) // 2
    for _ in range(int(input())):
        N, M, X = map(int, input().split())
        p = pow(1+M, N, mod)
        n = pow(1-M, N, mod)
        if X == 0:
            print(((p + n) * two_inv)%mod)
        else:
            print(((p - n) * two_inv)%mod)


if __name__ == '__main__':
    main()
0