結果
問題 | No.1141 田グリッド |
ユーザー | ntuda |
提出日時 | 2024-12-12 21:33:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,021 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 88,984 KB |
最終ジャッジ日時 | 2024-12-12 21:33:36 |
合計ジャッジ時間 | 8,674 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 223 ms
78,132 KB |
testcase_19 | AC | 215 ms
77,968 KB |
testcase_20 | AC | 216 ms
77,976 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
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 | - |
ソースコード
MOD = 10 ** 9 + 7 H, W = map(int, input().split()) A = [list(map(int, input().split())) for _ in range(H)] MHR = [1] * H MWR = [1] * W total = 1 SH = set() SW = set() for h in range(H): for w in range(W): if A[h][w] > 0: MHR[h] *= A[h][w] MHR[h] %= MOD MWR[w] *= A[h][w] MWR[w] %= MOD total *= A[h][w] total %= MOD else: SH.add(h) SW.add(w) for h in range(H): MHR[h] = pow(MHR[h], -1, MOD) for w in range(W): MWR[w] = pow(MWR[w], -1, MOD) f = 0 if len(SH) == 1 and len(SW) == 1: f = 1 else: f = 2 for _ in range(int(input())): r, c = map(int, input().split()) r -= 1 c -= 1 if f == 2: print(0) continue if f == 1: if r not in SH or c not in SW: print(0) continue ans = total else: ans = total * A[r][c] ans %= MOD ans *= MHR[r] ans %= MOD ans *= MWR[c] ans %= MOD print(ans)