結果

問題 No.1253 雀見椪
ユーザー 👑 rin204rin204
提出日時 2022-01-18 21:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,540 KB
最終ジャッジ日時 2024-05-02 19:31:32
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 46 ms
52,608 KB
testcase_03 AC 85 ms
71,424 KB
testcase_04 AC 267 ms
77,416 KB
testcase_05 AC 259 ms
77,216 KB
testcase_06 AC 257 ms
77,416 KB
testcase_07 AC 262 ms
77,540 KB
testcase_08 AC 258 ms
77,440 KB
testcase_09 AC 255 ms
77,540 KB
testcase_10 AC 255 ms
77,172 KB
testcase_11 AC 259 ms
77,352 KB
testcase_12 AC 259 ms
77,244 KB
testcase_13 AC 258 ms
77,228 KB
testcase_14 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

def solve():
    n, ag, bg, ac, bc, ap, bp = map(int, input().split())
    G = (ag, bg)
    C = (ac, bc)
    P = (ap, bp)
    gcp = [G, C, P]
    ans = 0
    for i in range(3):
        g = gcp[i]
        tmp = (g[1] - g[0]) * pow(g[1], MOD - 2, MOD)
        ans += pow(tmp, n, MOD)
        tmp = g[0] * pow(g[1], MOD - 2, MOD)
        ans -= 2 * pow(tmp, n, MOD)
        ans %= MOD
    ans = 1 - ans
    print(ans % MOD)
    

for _ in range(int(input())):
    solve()
0