結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,628 KB
testcase_01 WA -
testcase_02 AC 128 ms
41,764 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 107 ms
41,544 KB
testcase_07 AC 121 ms
41,708 KB
testcase_08 AC 248 ms
43,272 KB
testcase_09 WA -
testcase_10 AC 122 ms
41,104 KB
testcase_11 AC 118 ms
41,628 KB
testcase_12 AC 123 ms
41,628 KB
testcase_13 WA -
testcase_14 AC 121 ms
41,452 KB
testcase_15 WA -
testcase_16 AC 112 ms
40,240 KB
testcase_17 AC 106 ms
41,128 KB
testcase_18 AC 107 ms
40,340 KB
testcase_19 WA -
testcase_20 AC 111 ms
40,124 KB
testcase_21 WA -
testcase_22 AC 123 ms
41,528 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 RE -
testcase_26 AC 113 ms
40,396 KB
testcase_27 AC 121 ms
41,564 KB
testcase_28 AC 123 ms
41,160 KB
testcase_29 AC 230 ms
42,692 KB
testcase_30 AC 175 ms
42,624 KB
testcase_31 AC 181 ms
42,032 KB
testcase_32 AC 188 ms
41,880 KB
testcase_33 AC 246 ms
43,180 KB
testcase_34 AC 126 ms
41,792 KB
testcase_35 AC 203 ms
42,384 KB
testcase_36 AC 179 ms
42,208 KB
testcase_37 AC 166 ms
42,356 KB
testcase_38 AC 170 ms
42,080 KB
testcase_39 AC 229 ms
42,464 KB
testcase_40 AC 193 ms
42,580 KB
testcase_41 AC 188 ms
42,304 KB
testcase_42 AC 176 ms
42,420 KB
testcase_43 AC 176 ms
42,080 KB
testcase_44 AC 159 ms
42,000 KB
testcase_45 AC 213 ms
43,164 KB
testcase_46 AC 180 ms
42,276 KB
testcase_47 AC 182 ms
42,172 KB
testcase_48 AC 169 ms
42,088 KB
testcase_49 AC 126 ms
41,624 KB
testcase_50 AC 118 ms
40,116 KB
testcase_51 AC 137 ms
41,568 KB
testcase_52 WA -
testcase_53 AC 163 ms
41,432 KB
testcase_54 AC 138 ms
41,040 KB
testcase_55 AC 167 ms
41,580 KB
testcase_56 AC 145 ms
41,604 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;
				int t = p[0] * vy + p[1] * vx;
				if(t == 0 || t == -1) {
					continue;
				}else {
					r[2] = i;
					c[2] = i;
					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