結果

問題 No.1253 雀見椪
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-30 04:49:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-30 04:49:53
合計ジャッジ時間 4,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 51 ms
60,928 KB
testcase_03 AC 93 ms
76,928 KB
testcase_04 AC 304 ms
77,440 KB
testcase_05 AC 327 ms
77,440 KB
testcase_06 AC 330 ms
77,568 KB
testcase_07 AC 332 ms
77,440 KB
testcase_08 AC 303 ms
77,312 KB
testcase_09 AC 305 ms
77,312 KB
testcase_10 AC 326 ms
77,312 KB
testcase_11 AC 303 ms
77,184 KB
testcase_12 AC 303 ms
77,480 KB
testcase_13 AC 306 ms
77,696 KB
testcase_14 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=10**9+7
T=int(input())
for _ in range(T):
  n,a1,b1,a2,b2,a3,b3=map(int,input().split())
  p1=a1*pow(b1,M-2,M)%M
  p2=a2*pow(b2,M-2,M)%M
  p3=a3*pow(b3,M-2,M)%M
  p=[p1,p2,p3]
  a=0
  for i in range(1<<3):
    a+=((-1)**(i.bit_count()%2))*pow(1-sum(p[j]*((i>>j)&1) for j in range(3)),n,M)
  a+=pow(p[0],n,M)+pow(p[1],n,M)+pow(p[2],n,M)
  a%=M
  print(a)
0