結果

問題 No.1253 雀見椪
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-10-09 22:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-07-20 13:42:46
合計ジャッジ時間 4,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 80 ms
67,840 KB
testcase_04 AC 296 ms
78,464 KB
testcase_05 AC 281 ms
78,336 KB
testcase_06 AC 279 ms
78,336 KB
testcase_07 AC 279 ms
78,592 KB
testcase_08 AC 286 ms
78,592 KB
testcase_09 AC 274 ms
78,336 KB
testcase_10 AC 285 ms
78,720 KB
testcase_11 AC 287 ms
78,336 KB
testcase_12 AC 289 ms
78,208 KB
testcase_13 AC 288 ms
78,464 KB
testcase_14 AC 38 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
mod = 10**9 + 7
for i in range(t):
    N,Ag,Bg,Ac,Bc,Ap,Bp = map(int,input().split())

    p1 = pow( Ag*pow(Bg,mod-2,mod) + Ac*pow(Bc,mod-2,mod), N, mod )
    p2 = pow( Ac*pow(Bc,mod-2,mod) + Ap*pow(Bp,mod-2,mod), N, mod )
    p3 = pow( Ap*pow(Bp,mod-2,mod) + Ag*pow(Bg,mod-2,mod), N, mod )
    
    p4 = pow( Ag*pow(Bg,mod-2,mod), N, mod )
    p5 = pow( Ac*pow(Bc,mod-2,mod), N, mod )
    p6 = pow( Ap*pow(Bp,mod-2,mod), N, mod )

    ans = 1 - (p1+p2+p3) + 2*(p4+p5+p6)
    print(ans%mod)
0