結果

問題 No.1141 田グリッド
ユーザー face4face4
提出日時 2020-08-10 11:17:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 769 ms / 2,000 ms
コード長 2,293 bytes
コンパイル時間 2,939 ms
コンパイル使用メモリ 78,868 KB
実行使用メモリ 64,800 KB
最終ジャッジ日時 2024-10-06 20:01:46
合計ジャッジ時間 20,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,496 KB
testcase_01 AC 55 ms
36,896 KB
testcase_02 AC 53 ms
36,892 KB
testcase_03 AC 55 ms
36,752 KB
testcase_04 AC 54 ms
36,684 KB
testcase_05 AC 54 ms
36,892 KB
testcase_06 AC 54 ms
36,608 KB
testcase_07 AC 55 ms
36,492 KB
testcase_08 AC 110 ms
40,060 KB
testcase_09 AC 107 ms
38,896 KB
testcase_10 AC 123 ms
39,732 KB
testcase_11 AC 130 ms
40,416 KB
testcase_12 AC 127 ms
40,228 KB
testcase_13 AC 739 ms
55,956 KB
testcase_14 AC 765 ms
64,800 KB
testcase_15 AC 727 ms
54,164 KB
testcase_16 AC 727 ms
54,972 KB
testcase_17 AC 714 ms
54,572 KB
testcase_18 AC 687 ms
54,936 KB
testcase_19 AC 717 ms
54,516 KB
testcase_20 AC 715 ms
55,060 KB
testcase_21 AC 718 ms
61,512 KB
testcase_22 AC 706 ms
53,124 KB
testcase_23 AC 714 ms
60,988 KB
testcase_24 AC 692 ms
55,312 KB
testcase_25 AC 749 ms
55,536 KB
testcase_26 AC 732 ms
60,428 KB
testcase_27 AC 710 ms
55,124 KB
testcase_28 AC 738 ms
56,936 KB
testcase_29 AC 684 ms
58,368 KB
testcase_30 AC 753 ms
53,032 KB
testcase_31 AC 719 ms
61,376 KB
testcase_32 AC 769 ms
61,688 KB
testcase_33 AC 709 ms
55,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;

public class Main {
    static long[][] cp(long[][] a){
        int h = a.length, w = a[0].length;
        long[][] ret = new long[h][w];
        for(int i = 0; i < h; i++){
            ret[i] = Arrays.copyOf(a[i], a[i].length);
        }
        return ret;
    }
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ");
        int h = Integer.parseInt(line[0]);
        int w = Integer.parseInt(line[1]);
        int mod = 1000000007;
        long a[][] = new long[h][w];
        for(int i = 0; i < h; i++){
            line = br.readLine().split(" ");
            for(int j = 0; j < w; j++){
                a[i][j] = Integer.parseInt(line[j]);
            }
        }
        long l[][] = new long[h][w], r[][] = new long[h][w];
        for(int i = 0; i < h; i++){
            for(int j = 0; j < w; j++){
                if(j == 0){
                    l[i][j] = a[i][j];
                    r[i][w-1-j] = a[i][w-1-j];
                }else{
                    l[i][j] = l[i][j-1]*a[i][j]%mod;
                    r[i][w-1-j] = r[i][w-1-j+1]*a[i][w-1-j]%mod;
                }
            }
        }
        long ld[][] = cp(l), lu[][] = cp(l);
        long rd[][] = cp(r), ru[][] = cp(r);
        for(int i = 1; i < h; i++){
            for(int j = 0; j < w; j++){
                ld[i][j] = ld[i-1][j]*l[i][j]%mod;
                lu[h-1-i][j] = lu[h-1-i+1][j]*l[h-1-i][j]%mod;
                rd[i][w-1-j] = rd[i-1][w-1-j]*r[i][w-1-j]%mod;
                ru[h-1-i][w-1-j] = ru[h-1-i+1][w-1-j]*r[h-1-i][w-1-j]%mod;
            }
        }
        int q = Integer.parseInt(br.readLine());
        while(q-- > 0){
            line = br.readLine().split(" ");
            int x = Integer.parseInt(line[0])-1;
            int y = Integer.parseInt(line[1])-1;
            long ans = 1;
            if(x-1 >= 0 && y-1 >= 0)  ans = ans*ld[x-1][y-1]%mod;
            if(x-1 >= 0 && y+1 < w)   ans = ans*rd[x-1][y+1]%mod;
            if(x+1 < h && y-1 >= 0)   ans = ans*lu[x+1][y-1]%mod;
            if(x+1 < h && y+1 < w)    ans = ans*ru[x+1][y+1]%mod;
            System.out.println(ans);
        }
    }
}
0