結果
問題 | No.1141 田グリッド |
ユーザー | AEn |
提出日時 | 2022-05-21 17:00:07 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 755 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 89,344 KB |
最終ジャッジ日時 | 2024-09-20 11:58:27 |
合計ジャッジ時間 | 6,383 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,096 KB |
testcase_01 | AC | 42 ms
52,096 KB |
testcase_02 | AC | 41 ms
52,096 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 65 ms
66,944 KB |
testcase_09 | AC | 57 ms
64,000 KB |
testcase_10 | AC | 64 ms
66,816 KB |
testcase_11 | AC | 56 ms
64,256 KB |
testcase_12 | AC | 71 ms
68,736 KB |
testcase_13 | RE | - |
testcase_14 | AC | 359 ms
82,944 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
ソースコード
H, W = map(int, input().split())A = [list(map(int, input().split())) for _ in range(H)]H_n = [1]*HW_n = [1]*WH_z = [0]*HW_z = [0]*Wmod = 10**9+7al = 1al_z = 0for i in range(H):for j in range(W):if A[i][j] == 0:H_z[i] += 1W_z[j] += 1al_z += 1else:H_n[i] *= A[i][j]W_n[j] *= A[i][j]al *= A[i][j]H_n[i] %= modW_n[j] %= modal %= modQ = int(input())for i in range(Q):r, c = map(int, input().split())if H_z[r-1]+W_z[c-1]-(A[i][j]==0) != al_z:print(0)else:p = 1 if A[r-1][c-1] == 0 else A[r-1][c-1]print((al*pow(H_n[r-1], mod-2, mod)*pow(W_n[c-1], mod-2, mod)*p)%mod)