結果

問題 No.455 冬の大三角
ユーザー YamaKasaYamaKasa
提出日時 2018-09-22 15:20:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 77,812 KB
実行使用メモリ 54,852 KB
最終ジャッジ日時 2024-07-18 08:58:13
合計ジャッジ時間 12,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,104 KB
testcase_01 AC 123 ms
54,036 KB
testcase_02 AC 127 ms
52,920 KB
testcase_03 AC 115 ms
54,024 KB
testcase_04 AC 111 ms
53,360 KB
testcase_05 AC 118 ms
54,176 KB
testcase_06 AC 116 ms
54,112 KB
testcase_07 AC 110 ms
53,648 KB
testcase_08 AC 252 ms
54,588 KB
testcase_09 AC 120 ms
53,952 KB
testcase_10 AC 118 ms
54,168 KB
testcase_11 AC 116 ms
54,052 KB
testcase_12 AC 107 ms
52,960 KB
testcase_13 AC 119 ms
54,104 KB
testcase_14 AC 108 ms
52,764 KB
testcase_15 AC 117 ms
54,048 KB
testcase_16 AC 107 ms
53,028 KB
testcase_17 AC 120 ms
54,032 KB
testcase_18 AC 118 ms
54,100 KB
testcase_19 AC 119 ms
54,212 KB
testcase_20 AC 115 ms
54,204 KB
testcase_21 AC 119 ms
54,068 KB
testcase_22 AC 117 ms
54,092 KB
testcase_23 AC 113 ms
53,464 KB
testcase_24 AC 125 ms
54,244 KB
testcase_25 AC 119 ms
54,152 KB
testcase_26 AC 118 ms
54,172 KB
testcase_27 AC 118 ms
53,944 KB
testcase_28 AC 120 ms
54,176 KB
testcase_29 AC 238 ms
54,732 KB
testcase_30 AC 185 ms
54,264 KB
testcase_31 AC 182 ms
54,460 KB
testcase_32 AC 202 ms
54,396 KB
testcase_33 AC 244 ms
54,852 KB
testcase_34 AC 138 ms
54,192 KB
testcase_35 AC 204 ms
54,700 KB
testcase_36 AC 185 ms
54,532 KB
testcase_37 AC 192 ms
54,124 KB
testcase_38 AC 173 ms
54,376 KB
testcase_39 AC 220 ms
54,592 KB
testcase_40 AC 198 ms
54,408 KB
testcase_41 AC 188 ms
54,424 KB
testcase_42 AC 181 ms
54,620 KB
testcase_43 AC 173 ms
54,224 KB
testcase_44 AC 156 ms
53,300 KB
testcase_45 AC 247 ms
54,532 KB
testcase_46 AC 181 ms
54,484 KB
testcase_47 AC 195 ms
54,632 KB
testcase_48 AC 171 ms
54,556 KB
testcase_49 AC 123 ms
54,140 KB
testcase_50 AC 124 ms
54,164 KB
testcase_51 AC 131 ms
54,196 KB
testcase_52 AC 127 ms
53,224 KB
testcase_53 AC 161 ms
54,336 KB
testcase_54 AC 120 ms
52,860 KB
testcase_55 AC 167 ms
54,452 KB
testcase_56 AC 144 ms
54,108 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++;
				}
			}
		}
		int[]p = {r[0] - r[1], c[0] - c[1]};

		loop: for(int i = 0; i < H; i++) {
			for(int j = 0; j < W; j++) {
				int vy = r[0] - i;
				int vx = c[0] - j;
				if(p[0] * vx == p[1] * vy) {
					continue;
				}else {
					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