結果

問題 No.1141 田グリッド
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-17 10:58:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,244 KB
最終ジャッジ日時 2024-06-10 18:34:57
合計ジャッジ時間 8,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 66 ms
66,560 KB
testcase_09 AC 55 ms
64,128 KB
testcase_10 AC 62 ms
66,304 KB
testcase_11 AC 55 ms
63,872 KB
testcase_12 AC 67 ms
68,608 KB
testcase_13 AC 237 ms
90,032 KB
testcase_14 AC 279 ms
91,244 KB
testcase_15 AC 224 ms
87,040 KB
testcase_16 AC 221 ms
87,424 KB
testcase_17 AC 220 ms
87,236 KB
testcase_18 AC 226 ms
86,368 KB
testcase_19 AC 218 ms
86,400 KB
testcase_20 AC 211 ms
86,492 KB
testcase_21 AC 212 ms
87,552 KB
testcase_22 AC 223 ms
87,552 KB
testcase_23 AC 212 ms
87,312 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 #

h,w=map(int,input().split())
a=[list(map(int,input().split())) for _ in range(h)]
q=int(input())
rc=[list(map(int,input().split())) for _ in range(q)]
mod=10**9+7
cols=[]
rows=[]
whole=1
for i in range(h):
  tmp=1
  for j in range(w):
    tmp*=a[i][j]
    tmp%=mod
  rows.append(tmp)
  whole*=tmp
  whole%=mod
for j in range(w):
  tmp=1
  for i in range(h):
    tmp*=a[i][j]
    tmp%=mod
  cols.append(tmp)
ans=[]
for r,c in rc:
  r,c=r-1,c-1
  tmp=whole*pow(rows[r],mod-2,mod)*pow(cols[c],mod-2,mod)%mod
  tmp=tmp*a[r][c]%mod
  ans.append(tmp)
print(*ans,sep="\n")
0