結果

問題 No.1253 雀見椪
ユーザー H3PO4H3PO4
提出日時 2023-03-31 08:38:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-22 14:34:32
合計ジャッジ時間 8,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 69 ms
10,880 KB
testcase_04 AC 658 ms
11,008 KB
testcase_05 AC 653 ms
10,880 KB
testcase_06 AC 650 ms
11,008 KB
testcase_07 AC 650 ms
10,880 KB
testcase_08 AC 653 ms
11,008 KB
testcase_09 AC 652 ms
11,008 KB
testcase_10 AC 652 ms
10,880 KB
testcase_11 AC 651 ms
10,880 KB
testcase_12 AC 651 ms
10,880 KB
testcase_13 AC 651 ms
11,008 KB
testcase_14 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

MOD = 10 ** 9 + 7

modinv = lambda a, mod=MOD: pow(a, mod - 2, mod)


def solve(N, AG, BG, AC, BC, AP, BP):
    G = AG * modinv(BG) % MOD
    C = AC * modinv(BC) % MOD
    P = AP * modinv(BP) % MOD
    ans = (1
           - pow(1 - G, N, MOD)
           - pow(1 - C, N, MOD)
           - pow(1 - P, N, MOD)
           + 2 * pow(G, N, MOD)
           + 2 * pow(C, N, MOD)
           + 2 * pow(P, N, MOD)
           ) % MOD
    return ans


T = int(input())
for _ in range(T):
    print(solve(*map(int, input().split())))
0