結果

問題 No.1253 雀見椪
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-13 14:30:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 2,592 ms
コンパイル使用メモリ 199,184 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-13 14:31:02
合計ジャッジ時間 4,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 36 ms
6,940 KB
testcase_05 AC 36 ms
6,940 KB
testcase_06 AC 36 ms
6,944 KB
testcase_07 AC 36 ms
6,944 KB
testcase_08 AC 36 ms
6,940 KB
testcase_09 AC 36 ms
6,944 KB
testcase_10 AC 36 ms
6,944 KB
testcase_11 AC 37 ms
6,940 KB
testcase_12 AC 36 ms
6,940 KB
testcase_13 AC 36 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint1000000007;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int t;
    cin >> t;
    for (; t--;) {
        long long n, ag, bg, ac, bc, ap, bp;
        cin >> n >> ag >> bg >> ac >> bc >> ap >> bp;
        mint g = mint(ag) / bg, c = mint(ac) / bc, p = mint(ap) / bp;
        assert(g + c + p == 1);
        mint ans = (g + c).pow(n) + (g + p).pow(n) + (c + p).pow(n) -
                   2 * (g.pow(n) + c.pow(n) + p.pow(n));
        ans = 1 - ans;
        cout << ans.val() << "\n";
    }
}
0