結果
問題 | No.1141 田グリッド |
ユーザー | ks2m |
提出日時 | 2020-07-31 21:56:42 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 460 ms / 2,000 ms |
コード長 | 2,122 bytes |
コンパイル時間 | 2,452 ms |
コンパイル使用メモリ | 77,936 KB |
実行使用メモリ | 64,684 KB |
最終ジャッジ日時 | 2024-07-06 17:55:26 |
合計ジャッジ時間 | 11,859 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
50,588 KB |
testcase_01 | AC | 47 ms
50,460 KB |
testcase_02 | AC | 48 ms
50,184 KB |
testcase_03 | AC | 46 ms
50,456 KB |
testcase_04 | AC | 47 ms
50,444 KB |
testcase_05 | AC | 47 ms
50,340 KB |
testcase_06 | AC | 47 ms
50,484 KB |
testcase_07 | AC | 47 ms
50,556 KB |
testcase_08 | AC | 103 ms
52,520 KB |
testcase_09 | AC | 91 ms
52,312 KB |
testcase_10 | AC | 102 ms
52,548 KB |
testcase_11 | AC | 105 ms
52,608 KB |
testcase_12 | AC | 102 ms
52,564 KB |
testcase_13 | AC | 460 ms
64,684 KB |
testcase_14 | AC | 443 ms
60,168 KB |
testcase_15 | AC | 408 ms
58,512 KB |
testcase_16 | AC | 390 ms
58,776 KB |
testcase_17 | AC | 405 ms
58,388 KB |
testcase_18 | AC | 307 ms
58,380 KB |
testcase_19 | AC | 356 ms
58,396 KB |
testcase_20 | AC | 305 ms
58,556 KB |
testcase_21 | AC | 411 ms
58,700 KB |
testcase_22 | AC | 421 ms
58,524 KB |
testcase_23 | AC | 413 ms
58,688 KB |
testcase_24 | AC | 322 ms
58,444 KB |
testcase_25 | AC | 352 ms
58,452 KB |
testcase_26 | AC | 311 ms
58,440 KB |
testcase_27 | AC | 315 ms
58,492 KB |
testcase_28 | AC | 301 ms
58,168 KB |
testcase_29 | AC | 306 ms
58,684 KB |
testcase_30 | AC | 313 ms
58,432 KB |
testcase_31 | AC | 311 ms
58,460 KB |
testcase_32 | AC | 315 ms
58,520 KB |
testcase_33 | AC | 319 ms
58,580 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] sa = br.readLine().split(" "); int h = Integer.parseInt(sa[0]); int w = Integer.parseInt(sa[1]); int[][] a = new int[h][w]; for (int i = 0; i < h; i++) { sa = br.readLine().split(" "); for (int j = 0; j < w; j++) { a[i][j] = Integer.parseInt(sa[j]); } } int q = Integer.parseInt(br.readLine()); int[] r = new int[q]; int[] c = new int[q]; for (int i = 0; i < q; i++) { sa = br.readLine().split(" "); r[i] = Integer.parseInt(sa[0]) - 1; c[i] = Integer.parseInt(sa[1]) - 1; } br.close(); int mod = 1000000007; int zero = 0; long total = 1; long[] sx = new long[h]; int[] zx = new int[h]; for (int i = 0; i < h; i++) { sx[i] = 1; for (int j = 0; j < w; j++) { if (a[i][j] == 0) { zero++; zx[i]++; } else { total *= a[i][j]; total %= mod; sx[i] *= a[i][j]; sx[i] %= mod; } } } long[] sy = new long[w]; int[] zy = new int[w]; for (int j = 0; j < w; j++) { sy[j] = 1; for (int i = 0; i < h; i++) { if (a[i][j] == 0) { zy[j]++; } else { sy[j] *= a[i][j]; sy[j] %= mod; } } } PrintWriter pw = new PrintWriter(System.out); for (int i = 0; i < q; i++) { int z = zero - zx[r[i]] - zy[c[i]]; if (a[r[i]][c[i]] == 0) { z++; } if (z == 0) { long ans = total * modinv(sx[r[i]], mod) % mod; ans *= modinv(sy[c[i]], mod) % mod; ans %= mod; if (a[r[i]][c[i]] != 0) { ans *= a[r[i]][c[i]] % mod; ans %= mod; } pw.println(ans); } else { pw.println(0); } } pw.flush(); } static long modinv(long a, int m) { long b = m; long u = 1; long v = 0; long tmp = 0; while (b > 0) { long t = a / b; a -= t * b; tmp = a; a = b; b = tmp; u -= t * v; tmp = u; u = v; v = tmp; } u %= m; if (u < 0) u += m; return u; } }