結果

問題 No.455 冬の大三角
ユーザー Mcpu3Mcpu3
提出日時 2018-09-27 21:00:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 77,272 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-10-12 04:35:11
合計ジャッジ時間 11,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
39,904 KB
testcase_01 AC 128 ms
40,936 KB
testcase_02 AC 132 ms
41,276 KB
testcase_03 AC 115 ms
39,892 KB
testcase_04 AC 125 ms
40,996 KB
testcase_05 AC 122 ms
40,888 KB
testcase_06 AC 125 ms
41,020 KB
testcase_07 AC 125 ms
41,320 KB
testcase_08 AC 168 ms
41,616 KB
testcase_09 AC 122 ms
41,020 KB
testcase_10 AC 125 ms
41,024 KB
testcase_11 AC 126 ms
41,004 KB
testcase_12 AC 127 ms
40,976 KB
testcase_13 AC 127 ms
40,844 KB
testcase_14 AC 126 ms
41,088 KB
testcase_15 AC 122 ms
40,112 KB
testcase_16 AC 130 ms
41,056 KB
testcase_17 AC 127 ms
40,992 KB
testcase_18 AC 118 ms
39,776 KB
testcase_19 AC 127 ms
40,892 KB
testcase_20 AC 112 ms
39,972 KB
testcase_21 AC 128 ms
41,080 KB
testcase_22 AC 127 ms
40,832 KB
testcase_23 AC 113 ms
39,952 KB
testcase_24 AC 127 ms
40,912 KB
testcase_25 AC 126 ms
40,944 KB
testcase_26 AC 119 ms
39,936 KB
testcase_27 AC 124 ms
41,148 KB
testcase_28 AC 119 ms
39,776 KB
testcase_29 AC 153 ms
41,332 KB
testcase_30 AC 141 ms
41,584 KB
testcase_31 AC 142 ms
41,628 KB
testcase_32 AC 142 ms
41,372 KB
testcase_33 AC 160 ms
41,248 KB
testcase_34 AC 136 ms
41,276 KB
testcase_35 AC 161 ms
41,116 KB
testcase_36 AC 140 ms
41,188 KB
testcase_37 AC 142 ms
40,988 KB
testcase_38 AC 121 ms
40,124 KB
testcase_39 AC 144 ms
41,252 KB
testcase_40 AC 141 ms
40,912 KB
testcase_41 AC 142 ms
41,248 KB
testcase_42 AC 128 ms
40,300 KB
testcase_43 AC 140 ms
41,248 KB
testcase_44 AC 136 ms
41,344 KB
testcase_45 AC 162 ms
41,468 KB
testcase_46 AC 140 ms
41,228 KB
testcase_47 AC 144 ms
41,268 KB
testcase_48 AC 136 ms
41,392 KB
testcase_49 AC 113 ms
40,112 KB
testcase_50 AC 126 ms
41,112 KB
testcase_51 AC 132 ms
40,996 KB
testcase_52 AC 138 ms
40,832 KB
testcase_53 AC 133 ms
41,140 KB
testcase_54 AC 132 ms
41,168 KB
testcase_55 AC 131 ms
41,268 KB
testcase_56 AC 136 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int H = sc.nextInt(), W = sc.nextInt(), h[] = new int[2], w[] = new int[2], k = 0;
        char S[][] = new char[H][W + 1];
        for (int i = 0; i < H; ++i) {
            S[i] = sc.next().toCharArray();
            for (int j = 0; j < W && k != 2; ++j) {
                if (S[i][j] == '*') {
                    h[k] = i;
                    w[k] = j;
                    ++k;
                }
            }
        }
        sc.close();
        if (h[0] == h[1]) {
            if (h[0] == 0) S[1][0] = '*';
            else S[0][0] = '*';
        }
        else {
            if (w[0] == 0) S[h[0]][1] = '*';
            else S[h[0]][w[0] - 1] = '*';
        }
        for (int i = 0; i < H; ++i) System.out.println(S[i]);
    }
}
0