結果

問題 No.1141 田グリッド
ユーザー sepa38sepa38
提出日時 2023-03-28 10:31:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 445 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 88,688 KB
最終ジャッジ日時 2024-09-20 01:36:46
合計ジャッジ時間 8,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,160 KB
testcase_01 AC 35 ms
53,008 KB
testcase_02 AC 38 ms
52,344 KB
testcase_03 AC 38 ms
52,544 KB
testcase_04 AC 36 ms
53,508 KB
testcase_05 AC 34 ms
53,044 KB
testcase_06 AC 33 ms
52,688 KB
testcase_07 AC 35 ms
53,516 KB
testcase_08 AC 56 ms
66,552 KB
testcase_09 AC 49 ms
64,636 KB
testcase_10 AC 56 ms
67,040 KB
testcase_11 AC 51 ms
64,972 KB
testcase_12 AC 63 ms
69,796 KB
testcase_13 AC 288 ms
88,688 KB
testcase_14 AC 340 ms
82,632 KB
testcase_15 AC 279 ms
78,552 KB
testcase_16 AC 281 ms
78,516 KB
testcase_17 AC 288 ms
78,304 KB
testcase_18 AC 279 ms
78,452 KB
testcase_19 AC 292 ms
78,728 KB
testcase_20 AC 265 ms
78,460 KB
testcase_21 AC 275 ms
78,564 KB
testcase_22 AC 272 ms
78,440 KB
testcase_23 AC 276 ms
78,288 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)]
b = [1] * h
v = [1] * w
mod = 10 ** 9 + 7
s = 1
for i in range(h):
  for j in range(w):
    s *= a[i][j]
    s %= mod
    b[i] *= a[i][j]
    b[i] %= mod
    v[j] *= a[i][j]
    v[j] %= mod
for _ in range(int(input())):
  r, c = map(lambda x: int(x)-1, input().split())
  ans = s * pow(b[r], mod-2, mod) * pow(v[c], mod-2, mod) * a[r][c] % mod
  print(ans)
0