結果

問題 No.455 冬の大三角
ユーザー YamaKasaYamaKasa
提出日時 2018-09-22 15:03:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,217 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 43,356 KB
最終ジャッジ日時 2024-07-18 08:57:15
合計ジャッジ時間 12,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,292 KB
testcase_01 AC 105 ms
41,272 KB
testcase_02 AC 152 ms
41,908 KB
testcase_03 AC 114 ms
39,972 KB
testcase_04 AC 117 ms
41,292 KB
testcase_05 AC 114 ms
40,108 KB
testcase_06 AC 126 ms
41,552 KB
testcase_07 AC 116 ms
40,980 KB
testcase_08 AC 233 ms
43,356 KB
testcase_09 AC 119 ms
41,384 KB
testcase_10 AC 115 ms
41,628 KB
testcase_11 AC 111 ms
41,348 KB
testcase_12 AC 122 ms
41,360 KB
testcase_13 AC 120 ms
41,296 KB
testcase_14 AC 117 ms
41,308 KB
testcase_15 AC 123 ms
41,260 KB
testcase_16 AC 117 ms
41,652 KB
testcase_17 AC 123 ms
41,400 KB
testcase_18 AC 120 ms
41,160 KB
testcase_19 AC 119 ms
41,216 KB
testcase_20 AC 118 ms
41,628 KB
testcase_21 AC 122 ms
41,396 KB
testcase_22 AC 106 ms
41,548 KB
testcase_23 AC 119 ms
41,500 KB
testcase_24 AC 115 ms
41,448 KB
testcase_25 AC 114 ms
41,392 KB
testcase_26 AC 116 ms
41,524 KB
testcase_27 AC 103 ms
40,244 KB
testcase_28 AC 114 ms
41,448 KB
testcase_29 AC 226 ms
42,808 KB
testcase_30 AC 181 ms
42,388 KB
testcase_31 AC 185 ms
42,192 KB
testcase_32 AC 187 ms
42,124 KB
testcase_33 AC 230 ms
42,956 KB
testcase_34 AC 123 ms
41,672 KB
testcase_35 AC 194 ms
42,468 KB
testcase_36 AC 184 ms
42,252 KB
testcase_37 AC 178 ms
42,004 KB
testcase_38 AC 162 ms
40,924 KB
testcase_39 AC 235 ms
43,244 KB
testcase_40 AC 208 ms
42,348 KB
testcase_41 AC 196 ms
42,248 KB
testcase_42 AC 175 ms
42,028 KB
testcase_43 AC 166 ms
42,072 KB
testcase_44 AC 152 ms
41,964 KB
testcase_45 AC 223 ms
42,788 KB
testcase_46 AC 179 ms
41,056 KB
testcase_47 AC 170 ms
41,936 KB
testcase_48 AC 179 ms
41,964 KB
testcase_49 AC 117 ms
41,196 KB
testcase_50 AC 129 ms
41,588 KB
testcase_51 AC 137 ms
41,748 KB
testcase_52 WA -
testcase_53 AC 158 ms
41,832 KB
testcase_54 AC 135 ms
41,704 KB
testcase_55 AC 148 ms
41,948 KB
testcase_56 AC 136 ms
41,900 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;
				if(r[0] == i && c[0] == j || r[1] == i && c[2] == j) {
					flag = false;
					continue;
				}
				if(r[0] == i && r[1] == i || c[0] == c[1] && c[0] == j) {
					flag = false;
					continue;
				}
				if((r[0] - c[0]) == (r[1] - c[1]) && i - j == (r[0] - c[0])) {
					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