結果

問題 No.455 冬の大三角
ユーザー uafr_csuafr_cs
提出日時 2017-10-30 19:21:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 78,280 KB
実行使用メモリ 42,960 KB
最終ジャッジ日時 2024-06-30 03:21:10
合計ジャッジ時間 11,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,184 KB
testcase_01 AC 119 ms
41,192 KB
testcase_02 AC 148 ms
41,420 KB
testcase_03 AC 118 ms
41,268 KB
testcase_04 AC 120 ms
41,288 KB
testcase_05 AC 116 ms
41,300 KB
testcase_06 AC 114 ms
41,272 KB
testcase_07 AC 121 ms
41,064 KB
testcase_08 AC 259 ms
42,960 KB
testcase_09 AC 102 ms
41,364 KB
testcase_10 AC 112 ms
41,144 KB
testcase_11 AC 109 ms
41,536 KB
testcase_12 AC 110 ms
41,156 KB
testcase_13 AC 115 ms
41,256 KB
testcase_14 AC 122 ms
41,152 KB
testcase_15 AC 123 ms
41,096 KB
testcase_16 AC 119 ms
41,348 KB
testcase_17 AC 97 ms
41,220 KB
testcase_18 AC 109 ms
41,360 KB
testcase_19 AC 114 ms
39,896 KB
testcase_20 AC 104 ms
41,540 KB
testcase_21 AC 111 ms
41,204 KB
testcase_22 AC 122 ms
41,324 KB
testcase_23 AC 116 ms
41,244 KB
testcase_24 AC 116 ms
41,536 KB
testcase_25 AC 112 ms
41,392 KB
testcase_26 AC 112 ms
41,320 KB
testcase_27 AC 115 ms
41,352 KB
testcase_28 AC 116 ms
41,264 KB
testcase_29 AC 244 ms
42,464 KB
testcase_30 AC 183 ms
41,956 KB
testcase_31 AC 188 ms
41,920 KB
testcase_32 AC 190 ms
41,800 KB
testcase_33 AC 217 ms
42,468 KB
testcase_34 AC 128 ms
41,400 KB
testcase_35 AC 188 ms
42,020 KB
testcase_36 AC 197 ms
42,028 KB
testcase_37 AC 177 ms
42,072 KB
testcase_38 AC 180 ms
41,920 KB
testcase_39 AC 210 ms
42,740 KB
testcase_40 AC 189 ms
42,264 KB
testcase_41 AC 174 ms
41,828 KB
testcase_42 AC 163 ms
42,036 KB
testcase_43 AC 162 ms
41,944 KB
testcase_44 AC 155 ms
41,824 KB
testcase_45 AC 200 ms
42,624 KB
testcase_46 AC 165 ms
42,340 KB
testcase_47 AC 180 ms
41,700 KB
testcase_48 AC 156 ms
42,120 KB
testcase_49 AC 113 ms
41,304 KB
testcase_50 AC 117 ms
41,524 KB
testcase_51 AC 135 ms
41,480 KB
testcase_52 AC 131 ms
41,784 KB
testcase_53 AC 154 ms
41,668 KB
testcase_54 AC 128 ms
41,892 KB
testcase_55 AC 145 ms
41,724 KB
testcase_56 AC 142 ms
41,672 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{
			if(fst_x == snd_x){
				block[fst_y][(snd_x + 1) % W] = true;
			}else if(fst_y == snd_y){
				block[(fst_y + 1) % H][snd_x] = true;
			}else if(fst_x < snd_x && fst_y < snd_y){
				block[snd_y][fst_x] = true;
			}else if(snd_x < fst_x && snd_y < fst_y){
				block[snd_y][fst_x] = true;
			}else{
				block[snd_y][fst_x] = true;
			}
		}
		
		for(int i = 0; i < H; i++){
			for(int j = 0; j < W; j++){
				System.out.print(block[i][j] ? "*" : "-");
			}
			System.out.println();
		}
	}
}
0