結果

問題 No.971 いたずらっ子
ユーザー tentententen
提出日時 2020-08-25 11:49:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 2,737 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 99,280 KB
最終ジャッジ日時 2024-11-07 11:46:47
合計ジャッジ時間 10,962 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
99,280 KB
testcase_01 AC 551 ms
99,144 KB
testcase_02 AC 519 ms
76,844 KB
testcase_03 AC 532 ms
98,600 KB
testcase_04 AC 506 ms
85,272 KB
testcase_05 AC 527 ms
98,432 KB
testcase_06 AC 495 ms
76,936 KB
testcase_07 AC 166 ms
41,532 KB
testcase_08 AC 489 ms
57,724 KB
testcase_09 AC 345 ms
56,172 KB
testcase_10 AC 161 ms
41,720 KB
testcase_11 AC 121 ms
40,280 KB
testcase_12 AC 118 ms
40,812 KB
testcase_13 AC 136 ms
41,216 KB
testcase_14 AC 175 ms
42,260 KB
testcase_15 AC 137 ms
41,060 KB
testcase_16 AC 142 ms
41,528 KB
testcase_17 AC 131 ms
40,908 KB
testcase_18 AC 126 ms
40,896 KB
testcase_19 AC 131 ms
40,976 KB
testcase_20 AC 129 ms
41,268 KB
testcase_21 AC 118 ms
40,100 KB
testcase_22 AC 133 ms
41,008 KB
testcase_23 AC 129 ms
41,180 KB
testcase_24 AC 131 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = sc.nextInt();
        int w = sc.nextInt();
        char[][] field = new char[h][];
        long[][] counts = new long[h + 1][w + 1];
        Arrays.fill(counts[0], Long.MAX_VALUE / 10);
        for (int i = 0; i < h; i++) {
            field[i] = sc.next().toCharArray();
            counts[i + 1][0] = Long.MAX_VALUE / 10;
        }
        counts[0][1] = -1;
        counts[1][0] = -1;
        for (int i = 1; i <= h; i++) {
            for (int j = 1; j <= w; j++) {
                counts[i][j] = Math.min(counts[i - 1][j], counts[i][j - 1]) + 1;
                if (field[i - 1][j - 1] == 'k') {
                    counts[i][j] += i - 1 + j - 1;
                }
            }
        }
        System.out.println(counts[h][w]);
    }
}
0