結果

問題 No.1253 雀見椪
ユーザー tonyu0tonyu0
提出日時 2020-10-09 22:36:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-20 12:59:47
合計ジャッジ時間 8,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 78 ms
10,624 KB
testcase_04 AC 749 ms
10,624 KB
testcase_05 AC 755 ms
10,624 KB
testcase_06 AC 753 ms
10,624 KB
testcase_07 AC 742 ms
10,752 KB
testcase_08 AC 746 ms
10,752 KB
testcase_09 AC 750 ms
10,752 KB
testcase_10 AC 755 ms
10,752 KB
testcase_11 AC 752 ms
10,624 KB
testcase_12 AC 752 ms
10,624 KB
testcase_13 AC 756 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
mod = 10 ** 9 + 7


def inv(x):
    return pow(x, mod - 2, mod)


for _ in range(t):
    n, ga, gb, ca, cb, pa, pb = map(int, input().split())
    g = ga * inv(gb)
    c = ca * inv(cb)
    p = pa * inv(pb)

    g_one = pow(g, n, mod)
    c_one = pow(c, n, mod)
    p_one = pow(p, n, mod)
    gc = (mod + pow(g + c, n, mod) - (g_one + c_one)) % mod
    gp = (mod + pow(g + p, n, mod) - (g_one + p_one)) % mod
    cp = (mod + pow(c + p, n, mod) - (c_one + p_one)) % mod
    gcp = (mod + pow(g + c + p, n, mod) -
           (gc + gp + cp) % mod) % mod
    print(gcp)
0