結果

問題 No.455 冬の大三角
ユーザー uafr_csuafr_cs
提出日時 2017-10-30 19:08:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,392 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 78,244 KB
実行使用メモリ 56,136 KB
最終ジャッジ日時 2024-11-22 10:50:53
合計ジャッジ時間 14,168 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,344 KB
testcase_01 AC 137 ms
41,284 KB
testcase_02 AC 171 ms
41,668 KB
testcase_03 AC 119 ms
40,248 KB
testcase_04 AC 136 ms
41,300 KB
testcase_05 WA -
testcase_06 AC 134 ms
41,448 KB
testcase_07 AC 132 ms
41,140 KB
testcase_08 AC 272 ms
42,248 KB
testcase_09 AC 135 ms
41,320 KB
testcase_10 WA -
testcase_11 AC 135 ms
41,072 KB
testcase_12 WA -
testcase_13 AC 132 ms
41,008 KB
testcase_14 WA -
testcase_15 AC 135 ms
41,400 KB
testcase_16 WA -
testcase_17 AC 136 ms
41,240 KB
testcase_18 WA -
testcase_19 AC 133 ms
41,428 KB
testcase_20 AC 134 ms
41,012 KB
testcase_21 WA -
testcase_22 AC 133 ms
41,028 KB
testcase_23 AC 133 ms
41,156 KB
testcase_24 AC 134 ms
41,172 KB
testcase_25 AC 133 ms
41,264 KB
testcase_26 AC 136 ms
41,068 KB
testcase_27 WA -
testcase_28 AC 132 ms
41,188 KB
testcase_29 AC 243 ms
42,132 KB
testcase_30 AC 205 ms
42,068 KB
testcase_31 AC 203 ms
41,788 KB
testcase_32 AC 198 ms
41,700 KB
testcase_33 AC 258 ms
42,392 KB
testcase_34 AC 164 ms
41,616 KB
testcase_35 AC 232 ms
42,212 KB
testcase_36 AC 200 ms
41,932 KB
testcase_37 AC 200 ms
41,888 KB
testcase_38 AC 186 ms
41,704 KB
testcase_39 AC 262 ms
42,356 KB
testcase_40 AC 219 ms
42,220 KB
testcase_41 AC 200 ms
41,952 KB
testcase_42 AC 196 ms
41,832 KB
testcase_43 AC 188 ms
41,540 KB
testcase_44 AC 175 ms
41,880 KB
testcase_45 AC 240 ms
42,228 KB
testcase_46 AC 203 ms
41,940 KB
testcase_47 AC 203 ms
42,080 KB
testcase_48 AC 202 ms
41,656 KB
testcase_49 AC 136 ms
41,420 KB
testcase_50 AC 140 ms
41,284 KB
testcase_51 AC 151 ms
41,376 KB
testcase_52 WA -
testcase_53 AC 179 ms
41,520 KB
testcase_54 AC 151 ms
41,332 KB
testcase_55 AC 181 ms
41,380 KB
testcase_56 AC 159 ms
41,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int H = sc.nextInt();
		final int W = sc.nextInt();
		
		boolean[][] block = new boolean[H][W];
		for(int i = 0; i < H; i++){
			final char[] ins = sc.next().toCharArray();
			
			for(int j = 0; j < W; j++){
				block[i][j] = ins[j] == '*';
			}
		}
		
		int fst_x = -1, fst_y = -1, snd_x = -1, snd_y = -1;
		for(int i = 0; i < H; i++){
			for(int j = 0; j < W; j++){
				if(!block[i][j]){ continue; }
				
				if(fst_x < 0){
					fst_x = j;
					fst_y = i;
				}else{
					snd_x = j;
					snd_y = i;
				}
			}
		}
		
		if(H * W <= 4){
			LOOP:
			for(int i = 0; i < H; i++){
				for(int j = 0; j < W; j++){
					if(block[i][j]){ continue; }
					
					block[i][j] = true; break LOOP;
				}
			}
		}else{
			LOOP:
			for(int i = 0; i < H; i++){
				for(int j = 0; j < W; j++){
					if(block[i][j]){ continue; }
					if(i == fst_y || i == snd_y){ continue; }
					if(j == fst_x || j == snd_x){ continue; }
					
					block[i][j] = true; break LOOP;
				}
			}
		}
		
		for(int i = 0; i < H; i++){
			for(int j = 0; j < W; j++){
				System.out.print(block[i][j] ? "*" : "-");
			}
			System.out.println();
		}
	}
}
0