結果

問題 No.455 冬の大三角
ユーザー YamaKasaYamaKasa
提出日時 2018-09-22 14:58:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,110 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 77,428 KB
実行使用メモリ 55,268 KB
最終ジャッジ日時 2024-07-18 08:56:52
合計ジャッジ時間 11,831 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,060 KB
testcase_01 AC 112 ms
53,456 KB
testcase_02 AC 125 ms
53,460 KB
testcase_03 AC 100 ms
52,656 KB
testcase_04 AC 103 ms
52,720 KB
testcase_05 WA -
testcase_06 AC 105 ms
54,056 KB
testcase_07 AC 115 ms
53,908 KB
testcase_08 AC 260 ms
54,864 KB
testcase_09 AC 118 ms
53,904 KB
testcase_10 AC 114 ms
53,768 KB
testcase_11 AC 105 ms
52,868 KB
testcase_12 AC 114 ms
54,012 KB
testcase_13 AC 106 ms
53,908 KB
testcase_14 AC 97 ms
52,876 KB
testcase_15 AC 106 ms
53,836 KB
testcase_16 AC 108 ms
54,164 KB
testcase_17 AC 108 ms
53,924 KB
testcase_18 AC 92 ms
52,516 KB
testcase_19 AC 97 ms
52,612 KB
testcase_20 AC 115 ms
53,940 KB
testcase_21 AC 109 ms
53,900 KB
testcase_22 AC 107 ms
53,772 KB
testcase_23 AC 110 ms
52,960 KB
testcase_24 AC 111 ms
53,632 KB
testcase_25 AC 113 ms
53,832 KB
testcase_26 AC 107 ms
53,748 KB
testcase_27 AC 95 ms
52,628 KB
testcase_28 AC 93 ms
52,376 KB
testcase_29 AC 201 ms
54,660 KB
testcase_30 AC 172 ms
54,696 KB
testcase_31 AC 167 ms
54,396 KB
testcase_32 AC 170 ms
54,272 KB
testcase_33 AC 231 ms
55,268 KB
testcase_34 AC 122 ms
53,028 KB
testcase_35 AC 197 ms
54,760 KB
testcase_36 AC 182 ms
54,652 KB
testcase_37 AC 169 ms
53,340 KB
testcase_38 AC 178 ms
54,152 KB
testcase_39 AC 231 ms
54,596 KB
testcase_40 AC 197 ms
54,200 KB
testcase_41 AC 174 ms
54,268 KB
testcase_42 AC 159 ms
53,336 KB
testcase_43 AC 163 ms
54,300 KB
testcase_44 AC 155 ms
54,164 KB
testcase_45 AC 205 ms
54,540 KB
testcase_46 AC 155 ms
52,812 KB
testcase_47 AC 175 ms
53,968 KB
testcase_48 AC 168 ms
54,348 KB
testcase_49 AC 117 ms
53,684 KB
testcase_50 AC 119 ms
53,956 KB
testcase_51 AC 121 ms
52,728 KB
testcase_52 WA -
testcase_53 AC 145 ms
54,272 KB
testcase_54 AC 123 ms
54,252 KB
testcase_55 AC 139 ms
53,308 KB
testcase_56 AC 135 ms
54,172 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(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