結果

問題 No.1253 雀見椪
ユーザー convexineqconvexineq
提出日時 2020-12-21 22:01:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 77,072 KB
最終ジャッジ日時 2024-09-21 13:09:01
合計ジャッジ時間 4,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,600 KB
testcase_03 AC 73 ms
67,200 KB
testcase_04 AC 245 ms
76,668 KB
testcase_05 AC 248 ms
76,664 KB
testcase_06 AC 245 ms
77,028 KB
testcase_07 AC 250 ms
76,572 KB
testcase_08 AC 245 ms
76,640 KB
testcase_09 AC 232 ms
76,888 KB
testcase_10 AC 230 ms
76,576 KB
testcase_11 AC 231 ms
76,620 KB
testcase_12 AC 232 ms
76,776 KB
testcase_13 AC 231 ms
77,072 KB
testcase_14 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
T = int(input())
for _ in range(T):
    n,g1,g2,c1,c2,p1,p2 = map(int,input().split())
    g = g1*pow(g2,MOD-2,MOD)
    c = c1*pow(c2,MOD-2,MOD)
    p = p1*pow(p2,MOD-2,MOD)
    res = pow(g+c,n,MOD) + pow(c+p,n,MOD) + pow(p+g,n,MOD)
    res -= 2*(pow(g,n,MOD) + pow(c,n,MOD) + pow(p,n,MOD))
    print((1-res)%MOD)
0