結果

問題 No.971 いたずらっ子
ユーザー htensaihtensai
提出日時 2020-03-25 14:06:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 2,479 ms
コンパイル使用メモリ 77,544 KB
実行使用メモリ 74,228 KB
最終ジャッジ日時 2024-11-07 11:43:11
合計ジャッジ時間 11,297 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 590 ms
73,924 KB
testcase_01 AC 580 ms
73,740 KB
testcase_02 AC 555 ms
68,476 KB
testcase_03 AC 584 ms
73,328 KB
testcase_04 AC 465 ms
67,608 KB
testcase_05 AC 465 ms
74,228 KB
testcase_06 AC 530 ms
68,204 KB
testcase_07 AC 165 ms
41,388 KB
testcase_08 AC 472 ms
52,808 KB
testcase_09 AC 395 ms
52,712 KB
testcase_10 AC 159 ms
41,440 KB
testcase_11 AC 125 ms
41,244 KB
testcase_12 AC 127 ms
41,204 KB
testcase_13 AC 126 ms
40,364 KB
testcase_14 AC 183 ms
42,244 KB
testcase_15 AC 138 ms
41,112 KB
testcase_16 AC 151 ms
41,308 KB
testcase_17 AC 129 ms
41,288 KB
testcase_18 AC 129 ms
41,176 KB
testcase_19 AC 130 ms
41,188 KB
testcase_20 AC 119 ms
40,104 KB
testcase_21 AC 119 ms
39,796 KB
testcase_22 AC 135 ms
41,320 KB
testcase_23 AC 133 ms
41,012 KB
testcase_24 AC 130 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    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][];
        for (int i = 0; i < h; i++) {
            field[i] = sc.next().toCharArray();
        }
        int[][] costs = new int[h + 1][w + 1];
        Arrays.fill(costs[0], Integer.MAX_VALUE / 10);
        for (int i = 2; i <= h; i++) {
            costs[i][0] = Integer.MAX_VALUE / 10;
        }
        for (int i = 1; i <= h; i++) {
            for (int j = 1; j <= w; j++) {
                costs[i][j] = Math.min(costs[i - 1][j], costs[i][j - 1]) + 1;
                if (field[i - 1][j - 1] == 'k') {
                    costs[i][j] += i + j - 2;
                }
            }
        }
        System.out.println(costs[h][w] - 1);
    }
}
0