結果

問題 No.1253 雀見椪
ユーザー tanon710tanon710
提出日時 2020-10-15 22:30:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 838 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-07-20 20:03:06
合計ジャッジ時間 9,770 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 49 ms
51,840 KB
testcase_02 AC 47 ms
52,736 KB
testcase_03 AC 146 ms
75,520 KB
testcase_04 AC 827 ms
77,568 KB
testcase_05 AC 828 ms
77,184 KB
testcase_06 AC 832 ms
77,312 KB
testcase_07 AC 838 ms
77,312 KB
testcase_08 AC 812 ms
77,440 KB
testcase_09 AC 826 ms
77,312 KB
testcase_10 AC 835 ms
77,440 KB
testcase_11 AC 827 ms
77,312 KB
testcase_12 AC 829 ms
77,312 KB
testcase_13 AC 831 ms
77,312 KB
testcase_14 AC 47 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

t=int(input())
for _ in range(t):
    n,ag,bg,ac,bc,ap,bp=map(int,input().split())
    g=ag*bc*bp
    c=ac*bg*bp
    p=ap*bg*bc
    ans=(pow(g+c,n,mod)-pow(g,n,mod)-pow(c,n,mod))%mod+(pow(c+p,n,mod)-pow(c,n,mod)-pow(p,n,mod))%mod+(pow(p+g,n,mod)-pow(p,n,mod)-pow(g,n,mod))%mod
    ans%=mod
    ans*=pow(pow(bg*bc*bp,mod-2,mod),n,mod)
    ans%=mod
    ans=1-ans
    ans%=mod
    print(ans)
0