結果

問題 No.455 冬の大三角
ユーザー YamaKasaYamaKasa
提出日時 2018-09-22 14:49:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,025 bytes
コンパイル時間 1,990 ms
コンパイル使用メモリ 77,936 KB
実行使用メモリ 56,188 KB
最終ジャッジ日時 2024-07-18 08:56:22
合計ジャッジ時間 13,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,156 KB
testcase_01 WA -
testcase_02 AC 157 ms
42,076 KB
testcase_03 AC 127 ms
41,140 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 113 ms
39,952 KB
testcase_07 WA -
testcase_08 AC 270 ms
43,112 KB
testcase_09 AC 128 ms
41,352 KB
testcase_10 AC 126 ms
41,412 KB
testcase_11 AC 109 ms
39,836 KB
testcase_12 AC 126 ms
41,520 KB
testcase_13 WA -
testcase_14 AC 126 ms
41,396 KB
testcase_15 AC 113 ms
40,288 KB
testcase_16 AC 122 ms
41,500 KB
testcase_17 WA -
testcase_18 AC 124 ms
41,688 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 113 ms
40,396 KB
testcase_22 AC 126 ms
41,616 KB
testcase_23 AC 124 ms
41,452 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 129 ms
41,568 KB
testcase_27 AC 126 ms
41,540 KB
testcase_28 AC 125 ms
41,568 KB
testcase_29 AC 244 ms
42,764 KB
testcase_30 AC 198 ms
42,480 KB
testcase_31 AC 191 ms
42,304 KB
testcase_32 AC 198 ms
42,188 KB
testcase_33 AC 254 ms
44,472 KB
testcase_34 AC 154 ms
41,676 KB
testcase_35 AC 219 ms
42,620 KB
testcase_36 AC 195 ms
42,484 KB
testcase_37 AC 184 ms
41,936 KB
testcase_38 AC 180 ms
41,852 KB
testcase_39 AC 240 ms
42,972 KB
testcase_40 AC 217 ms
42,288 KB
testcase_41 AC 195 ms
42,764 KB
testcase_42 AC 188 ms
42,208 KB
testcase_43 AC 180 ms
41,796 KB
testcase_44 AC 169 ms
41,644 KB
testcase_45 AC 242 ms
42,864 KB
testcase_46 AC 196 ms
41,948 KB
testcase_47 AC 193 ms
42,268 KB
testcase_48 AC 184 ms
42,216 KB
testcase_49 AC 129 ms
41,712 KB
testcase_50 AC 134 ms
41,580 KB
testcase_51 AC 141 ms
41,232 KB
testcase_52 WA -
testcase_53 AC 170 ms
42,004 KB
testcase_54 AC 124 ms
40,052 KB
testcase_55 AC 176 ms
41,652 KB
testcase_56 AC 153 ms
41,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int H = scan.nextInt();
		int W = scan.nextInt();
		int[]r = new int[3];
		int[]c = new int[3];
		int idx = 0;
		char [][]s = new char[H][W];
		for(int i = 0; i < H; i++) {
			for(int j = 0; j < W; j++) {
				s[i][j] = '-';
			}
		}
		for(int i = 0; i < H; i++) {
			String t = scan.next();
			for(int j = 0; j < W; j++) {
				char ch = t.charAt(j);
				if(ch == '*') {
					r[idx] = i;
					c[idx] = j;
					s[i][j] = '*';
					idx++;
				}
			}
		}
		loop: for(int i = 0; i < H; i++) {
			for(int j = 0; j < W; j++) {
				boolean flag = true;
				for(int k = 0; k < 2; k++) {
					if(r[k] == i && c[j] == i) {
						flag = false;
						continue;
					}
				}
				if(flag) {
					r[2] = i;
					c[2] = j;
					break loop;
				}
			}
		}
		s[r[2]][c[2]] = '*';
		for(int i = 0; i < H; i++) {
			for(int j = 0; j < W; j++) {
				System.out.print(s[i][j]);
			}
			System.out.println();
		}
	}
}
0