結果
| 問題 |
No.1141 田グリッド
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-31 22:17:59 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,764 bytes |
| コンパイル時間 | 2,330 ms |
| コンパイル使用メモリ | 199,072 KB |
| 最終ジャッジ日時 | 2025-01-12 10:32:25 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 WA * 10 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:41:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
41 | int h,w; scanf("%d%d",&h,&w);
| ~~~~~^~~~~~~~~~~~~~
main.cpp:43:32: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
43 | rep(i,h) rep(j,w) scanf("%d",&B[i][j]);
| ~~~~~^~~~~~~~~~~~~~~
main.cpp:53:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
53 | int q; scanf("%d",&q);
| ~~~~~^~~~~~~~~
main.cpp:55:31: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
55 | int r,c; scanf("%d%d",&r,&c); r--; c--;
| ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
using namespace std;
class mint{
static const int MOD=1e9+7;
int x;
public:
mint():x(0){}
mint(long long y){ x=y%MOD; if(x<0) x+=MOD; }
mint& operator+=(const mint& m){ x+=m.x; if(x>=MOD) x-=MOD; return *this; }
mint& operator-=(const mint& m){ x-=m.x; if(x< 0) x+=MOD; return *this; }
mint& operator*=(const mint& m){ x=1LL*x*m.x%MOD; return *this; }
mint& operator/=(const mint& m){ return *this*=inverse(m); }
mint operator+(const mint& m)const{ return mint(*this)+=m; }
mint operator-(const mint& m)const{ return mint(*this)-=m; }
mint operator*(const mint& m)const{ return mint(*this)*=m; }
mint operator/(const mint& m)const{ return mint(*this)/=m; }
mint operator-()const{ return mint(-x); }
friend mint inverse(const mint& m){
int a=m.x,b=MOD,u=1,v=0;
while(b>0){ int t=a/b; a-=t*b; swap(a,b); u-=t*v; swap(u,v); }
return u;
}
friend istream& operator>>(istream& is,mint& m){ long long t; is>>t; m=mint(t); return is; }
friend ostream& operator<<(ostream& os,const mint& m){ return os<<m.x; }
int to_int()const{ return x; }
};
mint operator+(long long x,const mint& m){ return mint(x)+m; }
mint operator-(long long x,const mint& m){ return mint(x)-m; }
mint operator*(long long x,const mint& m){ return mint(x)*m; }
mint operator/(long long x,const mint& m){ return mint(x)/m; }
int main(){
int h,w; scanf("%d%d",&h,&w);
vector B(h,vector(w,0));
rep(i,h) rep(j,w) scanf("%d",&B[i][j]);
mint prod=1;
vector<mint> R(h,1),C(w,1);
rep(i,h) rep(j,w) {
prod*=B[i][j];
R[i]*=B[i][j];
C[j]*=B[i][j];
}
int q; scanf("%d",&q);
rep(_,q){
int r,c; scanf("%d%d",&r,&c); r--; c--;
printf("%d\n",(prod/(R[r]*C[c])*B[r][c]).to_int());
}
return 0;
}