結果

問題 No.455 冬の大三角
ユーザー fal_rndfal_rnd
提出日時 2016-12-06 22:38:11
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 597 bytes
コンパイル時間 4,515 ms
コンパイル使用メモリ 80,000 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-11-28 03:16:14
合計ジャッジ時間 11,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,360 KB
testcase_01 AC 108 ms
40,072 KB
testcase_02 AC 101 ms
40,220 KB
testcase_03 AC 109 ms
41,240 KB
testcase_04 AC 104 ms
39,820 KB
testcase_05 AC 108 ms
41,148 KB
testcase_06 RE -
testcase_07 AC 115 ms
41,272 KB
testcase_08 AC 140 ms
41,468 KB
testcase_09 AC 112 ms
41,000 KB
testcase_10 RE -
testcase_11 AC 114 ms
40,484 KB
testcase_12 AC 119 ms
41,360 KB
testcase_13 AC 113 ms
40,984 KB
testcase_14 AC 109 ms
41,088 KB
testcase_15 AC 108 ms
40,568 KB
testcase_16 AC 114 ms
39,976 KB
testcase_17 AC 118 ms
40,816 KB
testcase_18 AC 117 ms
41,180 KB
testcase_19 AC 119 ms
41,272 KB
testcase_20 AC 119 ms
40,844 KB
testcase_21 AC 129 ms
40,928 KB
testcase_22 RE -
testcase_23 AC 132 ms
40,940 KB
testcase_24 AC 128 ms
41,076 KB
testcase_25 AC 120 ms
39,908 KB
testcase_26 AC 112 ms
40,200 KB
testcase_27 AC 99 ms
39,912 KB
testcase_28 AC 109 ms
40,876 KB
testcase_29 AC 141 ms
41,448 KB
testcase_30 AC 131 ms
41,096 KB
testcase_31 AC 134 ms
41,048 KB
testcase_32 AC 143 ms
41,048 KB
testcase_33 AC 147 ms
41,584 KB
testcase_34 AC 118 ms
41,188 KB
testcase_35 AC 130 ms
41,300 KB
testcase_36 AC 132 ms
41,100 KB
testcase_37 AC 124 ms
41,468 KB
testcase_38 AC 109 ms
39,716 KB
testcase_39 AC 147 ms
40,876 KB
testcase_40 AC 140 ms
41,208 KB
testcase_41 AC 128 ms
41,516 KB
testcase_42 AC 125 ms
40,352 KB
testcase_43 AC 122 ms
41,620 KB
testcase_44 AC 115 ms
40,024 KB
testcase_45 AC 138 ms
41,308 KB
testcase_46 AC 136 ms
41,284 KB
testcase_47 AC 137 ms
41,252 KB
testcase_48 AC 133 ms
41,004 KB
testcase_49 AC 108 ms
40,060 KB
testcase_50 AC 119 ms
41,312 KB
testcase_51 AC 137 ms
41,200 KB
testcase_52 AC 136 ms
40,372 KB
testcase_53 AC 129 ms
40,292 KB
testcase_54 AC 135 ms
41,140 KB
testcase_55 AC 139 ms
41,224 KB
testcase_56 AC 145 ms
41,060 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=1;i<in.length;++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