結果

問題 No.1253 雀見椪
ユーザー KudeKude
提出日時 2020-10-09 22:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-07-20 11:53:52
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 97 ms
75,968 KB
testcase_04 AC 264 ms
77,560 KB
testcase_05 AC 262 ms
77,440 KB
testcase_06 AC 266 ms
77,568 KB
testcase_07 AC 263 ms
77,184 KB
testcase_08 AC 264 ms
77,240 KB
testcase_09 AC 263 ms
77,056 KB
testcase_10 AC 259 ms
77,380 KB
testcase_11 AC 259 ms
77,160 KB
testcase_12 AC 252 ms
77,088 KB
testcase_13 AC 248 ms
77,260 KB
testcase_14 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1 ... g^n + c^n + p^n
# 3 ... 1 - ((g + c)^n + (c + p)^n + (p + g)^n) + g^n + c^n + p^n
MOD = 10 ** 9 + 7
for _ in range(int(input())):
    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
    t1 = sum(pow(x, n, MOD) for x in [g, c, p]) % MOD
    t2 = (1 - sum(pow(x + y, n, MOD) for x, y in [(g, c), (c, p), (p, g)]) + t1) % MOD
    ans = (t1 + t2) % MOD
    print(ans)
0