結果

問題 No.1253 雀見椪
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-09 23:21:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-07-20 14:16:17
合計ジャッジ時間 4,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 82 ms
67,200 KB
testcase_04 AC 249 ms
77,184 KB
testcase_05 AC 251 ms
77,824 KB
testcase_06 AC 255 ms
77,184 KB
testcase_07 AC 259 ms
77,440 KB
testcase_08 AC 260 ms
77,696 KB
testcase_09 AC 249 ms
77,696 KB
testcase_10 AC 255 ms
78,080 KB
testcase_11 AC 263 ms
77,440 KB
testcase_12 AC 261 ms
77,440 KB
testcase_13 AC 254 ms
77,568 KB
testcase_14 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
mod = 10**9+7
for _ in range(t):
    n, ag, bg, ac, bc, ap, bp = map(int, input().split())
    p1 = (bp-ap)*pow(bp, mod-2, mod)
    p1 = pow(p1, n, mod)
    p2 = ap*pow(bp, mod-2, mod)
    p2 = pow(p2, n, mod)

    c1 = (bc-ac)*pow(bc, mod-2, mod)
    c1 = pow(c1, n, mod)
    c2 = ac*pow(bc, mod-2, mod)
    c2 = pow(c2, n, mod)

    g1 = (bg-ag)*pow(bg, mod-2, mod)
    g1 = pow(g1, n, mod)
    g2 = ag*pow(bg, mod-2, mod)
    g2 = pow(g2, n, mod)

    ans = 1-p1-c1-g1+2*p2+2*c2+2*g2
    ans %= mod
    print(ans)
0