結果

問題 No.1141 田グリッド
ユーザー zeronosu77108zeronosu77108
提出日時 2020-08-01 00:40:30
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,343 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 122,752 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-06 23:01:25
合計ジャッジ時間 5,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 RE -
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 6 ms
6,944 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 RE -
testcase_14 AC 253 ms
6,944 KB
testcase_15 AC 142 ms
6,944 KB
testcase_16 AC 138 ms
6,948 KB
testcase_17 AC 141 ms
6,940 KB
testcase_18 AC 136 ms
6,940 KB
testcase_19 AC 134 ms
6,940 KB
testcase_20 AC 130 ms
6,944 KB
testcase_21 AC 131 ms
6,940 KB
testcase_22 AC 131 ms
6,944 KB
testcase_23 AC 133 ms
6,944 KB
testcase_24 WA -
testcase_25 RE -
testcase_26 WA -
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
testcase_31 RE -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

const int MOD = 1000000007;
long pow(long a, long n, long p) {
    long res = 1;
    while(n!=0) {
        if (n%2) {
            res *= a;
            res %= MOD;
        }
        a *= a;
        a %= p;
        n >>= 1;
    }
    return res;
}

int main() {
    int h,w;
    cin >> h >> w;
    vector<vector<long>> a(h, vector<long>(w,0));

    long cpro = 1;
    for (int i=0; i<h; i++) {
        for (int j=0; j<w; j++) {
            cin >> a[i][j];
            cpro *= a[i][j];
            cpro %= MOD;
        }
    }

    vector<long> hpro(h,1);
    for (int i=0; i<h; i++) {
        for (int j=0; j<w; j++) {
            hpro[i] *= a[i][j];
            hpro[i] %= MOD;
        }
    }

    for (int i=0; i<h; i++) cerr<<hpro[i]<<" ";cerr<<endl;

    vector<long> wpro(h,1);
    for (int i=0; i<w; i++) {
        for (int j=0; j<h; j++) {
            wpro[i] *= a[j][i];
            wpro[i] %= MOD;
        }
    }

    for (int i=0; i<w; i++) cerr<<wpro[i]<<" ";cerr<<endl;

    int q;
    cin >> q;
    for (int i=0; i<q; i++) {
        int r,c;
        cin >> r >> c;
        long ans = cpro;
        (ans *= pow(hpro[r-1], MOD-2, MOD)) %= MOD;
        (ans *= pow(wpro[c-1], MOD-2, MOD)) %= MOD;
        (ans *= a[r-1][c-1]) %= MOD;
        cout << ans << endl;
    }
}
0