結果

問題 No.1253 雀見椪
ユーザー proriboneproribone
提出日時 2020-10-10 14:04:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-07-20 15:56:04
合計ジャッジ時間 4,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 41 ms
52,864 KB
testcase_03 AC 78 ms
72,192 KB
testcase_04 AC 271 ms
76,796 KB
testcase_05 AC 275 ms
76,672 KB
testcase_06 AC 270 ms
76,800 KB
testcase_07 AC 269 ms
77,184 KB
testcase_08 AC 272 ms
76,928 KB
testcase_09 AC 271 ms
76,860 KB
testcase_10 AC 268 ms
76,928 KB
testcase_11 AC 271 ms
76,928 KB
testcase_12 AC 274 ms
76,792 KB
testcase_13 AC 283 ms
76,928 KB
testcase_14 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=10**9+7

def solve():
    N,*arr=map(int,input().split())
    Ag,Bg,Ac,Bc,Ap,Bp=arr
    Cc=pow(Bc-Ac,N,MOD);Cg=pow(Bg-Ag,N,MOD);Cp=pow(Bp-Ap,N,MOD)
    Ag,Bg,Ac,Bc,Ap,Bp=map(lambda x:pow(x,N,MOD),arr)
    B=Bc*Bg*Bp%MOD
    A=0
    A=(A+Cc*Bg*Bp%MOD)%MOD
    A=(A+Cp*Bg*Bc%MOD)%MOD
    A=(A+Cg*Bc*Bp%MOD)%MOD
    r=(Ac*Bg*Bp%MOD+Ag*Bc*Bp%MOD+Ap*Bc*Bg%MOD)*2%MOD
    A=(A-r+MOD)%MOD
    A=(B-A+MOD)%MOD
    
    print(pow(B,MOD-2,MOD)*A%MOD)
    
T=int(input())

for _ in range(T):
    solve()
0