結果

問題 No.1141 田グリッド
ユーザー HaaHaa
提出日時 2020-07-31 21:49:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 938 bytes
コンパイル時間 1,545 ms
コンパイル使用メモリ 173,064 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 17:38:52
合計ジャッジ時間 5,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
const ll MOD = 1000000007;
const ll INF = 1e18;
#define REP(i, n) for(int i = 0; i < n; i++)
#define ALL(v) v.begin(), v.end()

ll power(ll x, ll y) {
	if (y==0) return 1;
	else if (y==1) return x%MOD;
	else if (y%2==0) { ll pow=power(x,y/2); return (pow*pow)%MOD; } 
	else { ll pow=power(x,y/2); return ((pow*pow)%MOD)*x%MOD; }
}
ll divid(ll x, ll y) {
	return ((x%MOD)*power(y,MOD-2))%MOD;
}

int main() {
	int h, w; cin >> h >> w;
	VVI a(h,VI(w));
	VI fy(h,1), fx(w,1);
	ll prd=1;
	REP(i,h)REP(j,w){
		cin >> a[i][j];
		fy[i]=fy[i]*a[i][j]%MOD;
		fx[j]=fx[j]*a[i][j]%MOD;
		prd=prd*a[i][j]%MOD;
	}
	int q; cin >> q;
	int r, c;
	while(q--){
		cin >> r >> c;
		r--; c--;
		ll ans=prd;
		ans=divid(ans,fy[r]);
		ans=divid(ans,fx[c]);
		ans=ans*a[r][c]%MOD;
		cout << ans << endl;
	}
	return 0;
}
0