結果

問題 No.455 冬の大三角
ユーザー fal_rndfal_rnd
提出日時 2016-12-06 22:39:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 599 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 54,624 KB
最終ジャッジ日時 2024-11-28 03:16:56
合計ジャッジ時間 11,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
40,992 KB
testcase_01 AC 134 ms
41,304 KB
testcase_02 AC 140 ms
41,728 KB
testcase_03 AC 135 ms
41,212 KB
testcase_04 AC 119 ms
40,080 KB
testcase_05 AC 142 ms
41,372 KB
testcase_06 WA -
testcase_07 AC 122 ms
41,176 KB
testcase_08 AC 169 ms
41,744 KB
testcase_09 AC 125 ms
41,376 KB
testcase_10 AC 106 ms
40,192 KB
testcase_11 AC 118 ms
41,612 KB
testcase_12 AC 131 ms
41,112 KB
testcase_13 AC 118 ms
40,072 KB
testcase_14 AC 109 ms
41,148 KB
testcase_15 AC 101 ms
40,152 KB
testcase_16 AC 112 ms
40,888 KB
testcase_17 AC 99 ms
40,120 KB
testcase_18 AC 104 ms
40,172 KB
testcase_19 AC 124 ms
41,328 KB
testcase_20 AC 125 ms
41,120 KB
testcase_21 AC 126 ms
41,492 KB
testcase_22 WA -
testcase_23 AC 127 ms
41,272 KB
testcase_24 AC 116 ms
40,232 KB
testcase_25 AC 119 ms
41,340 KB
testcase_26 AC 118 ms
40,204 KB
testcase_27 AC 131 ms
41,288 KB
testcase_28 AC 142 ms
41,444 KB
testcase_29 AC 180 ms
41,712 KB
testcase_30 AC 164 ms
41,360 KB
testcase_31 AC 165 ms
41,728 KB
testcase_32 AC 163 ms
41,312 KB
testcase_33 AC 181 ms
41,632 KB
testcase_34 AC 151 ms
41,692 KB
testcase_35 AC 174 ms
41,504 KB
testcase_36 AC 126 ms
41,516 KB
testcase_37 AC 124 ms
41,472 KB
testcase_38 AC 112 ms
40,096 KB
testcase_39 AC 160 ms
41,536 KB
testcase_40 AC 153 ms
41,596 KB
testcase_41 AC 148 ms
41,656 KB
testcase_42 AC 150 ms
41,504 KB
testcase_43 AC 128 ms
41,828 KB
testcase_44 AC 123 ms
40,348 KB
testcase_45 AC 162 ms
41,376 KB
testcase_46 AC 143 ms
41,884 KB
testcase_47 AC 141 ms
41,784 KB
testcase_48 AC 140 ms
41,272 KB
testcase_49 AC 120 ms
40,904 KB
testcase_50 AC 110 ms
40,032 KB
testcase_51 AC 116 ms
41,208 KB
testcase_52 AC 122 ms
41,476 KB
testcase_53 AC 129 ms
41,056 KB
testcase_54 AC 116 ms
40,376 KB
testcase_55 AC 132 ms
41,436 KB
testcase_56 AC 136 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
class C{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		String[] in=new String[s.nextInt()];
		s.next();
		int b=0;
		for(int i=0;i<in.length;++i) {
			in[i]=s.next();
		}
		for(int i=0;i<in.length-1;++i) {
			if(in[i].matches(".*\\*.*")) {
				if(in[i].matches(".*\\*.*\\*.*")) {
					b=i;
					break;
				}
				in[i]=in[i].replaceFirst("-", "*");
				for(String a:in) {
					System.out.println(a);
				}
				return;
			}
		}
		in[b+1]=in[b+1].replaceFirst("-", "*");
		for(String a:in) {
			System.out.println(a);
		}
	}
}
0