結果

問題 No.1253 雀見椪
ユーザー vwxyzvwxyz
提出日時 2024-06-02 09:48:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-02 09:48:46
合計ジャッジ時間 3,913 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 AC 74 ms
67,712 KB
testcase_04 AC 222 ms
76,928 KB
testcase_05 AC 246 ms
76,928 KB
testcase_06 AC 224 ms
76,928 KB
testcase_07 AC 229 ms
76,672 KB
testcase_08 AC 224 ms
76,928 KB
testcase_09 AC 225 ms
76,800 KB
testcase_10 AC 220 ms
77,056 KB
testcase_11 AC 227 ms
77,056 KB
testcase_12 AC 220 ms
77,184 KB
testcase_13 AC 245 ms
76,672 KB
testcase_14 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
mod=10**9+7
for t in range(T):
    N,AG,BG,AC,BC,AP,BP=map(int,input().split())
    G=AG*pow(BG,mod-2,mod)%mod
    C=AC*pow(BC,mod-2,mod)%mod
    P=AP*pow(BP,mod-2,mod)%mod
    GCP=[G,C,P]
    ans=(1-pow(G+C,N,mod)-pow(G+P,N,mod)-pow(C+P,N,mod)+(pow(G,N,mod)+pow(C,N,mod)+pow(P,N,mod))*2)%mod
    print(ans)
0