結果

問題 No.455 冬の大三角
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 04:16:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 1,149 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 79,528 KB
実行使用メモリ 44,328 KB
最終ジャッジ日時 2024-06-29 21:11:32
合計ジャッジ時間 12,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
42,288 KB
testcase_01 AC 138 ms
42,100 KB
testcase_02 AC 127 ms
42,228 KB
testcase_03 AC 139 ms
41,660 KB
testcase_04 AC 132 ms
42,232 KB
testcase_05 AC 131 ms
42,160 KB
testcase_06 AC 120 ms
42,060 KB
testcase_07 AC 121 ms
42,148 KB
testcase_08 AC 171 ms
42,772 KB
testcase_09 AC 139 ms
42,020 KB
testcase_10 AC 148 ms
42,020 KB
testcase_11 AC 141 ms
42,200 KB
testcase_12 AC 130 ms
42,020 KB
testcase_13 AC 132 ms
42,336 KB
testcase_14 AC 131 ms
42,200 KB
testcase_15 AC 147 ms
41,976 KB
testcase_16 AC 143 ms
41,952 KB
testcase_17 AC 147 ms
42,128 KB
testcase_18 AC 129 ms
42,208 KB
testcase_19 AC 140 ms
42,216 KB
testcase_20 AC 127 ms
41,996 KB
testcase_21 AC 133 ms
41,524 KB
testcase_22 AC 131 ms
42,052 KB
testcase_23 AC 136 ms
42,032 KB
testcase_24 AC 123 ms
42,060 KB
testcase_25 AC 132 ms
42,448 KB
testcase_26 AC 134 ms
41,952 KB
testcase_27 AC 126 ms
42,168 KB
testcase_28 AC 143 ms
42,148 KB
testcase_29 AC 179 ms
42,084 KB
testcase_30 AC 154 ms
42,316 KB
testcase_31 AC 157 ms
42,068 KB
testcase_32 AC 159 ms
42,148 KB
testcase_33 AC 166 ms
44,328 KB
testcase_34 AC 148 ms
42,184 KB
testcase_35 AC 161 ms
43,396 KB
testcase_36 AC 151 ms
42,408 KB
testcase_37 AC 154 ms
42,356 KB
testcase_38 AC 161 ms
42,328 KB
testcase_39 AC 163 ms
42,520 KB
testcase_40 AC 170 ms
42,372 KB
testcase_41 AC 151 ms
42,252 KB
testcase_42 AC 132 ms
41,788 KB
testcase_43 AC 147 ms
42,072 KB
testcase_44 AC 142 ms
42,316 KB
testcase_45 AC 160 ms
42,304 KB
testcase_46 AC 143 ms
42,260 KB
testcase_47 AC 160 ms
42,492 KB
testcase_48 AC 127 ms
42,172 KB
testcase_49 AC 119 ms
41,932 KB
testcase_50 AC 136 ms
42,228 KB
testcase_51 AC 122 ms
42,212 KB
testcase_52 AC 153 ms
42,048 KB
testcase_53 AC 138 ms
42,160 KB
testcase_54 AC 134 ms
41,540 KB
testcase_55 AC 138 ms
42,060 KB
testcase_56 AC 138 ms
42,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int H = sc.nextInt();
        int W = sc.nextInt();
        String [] S = new String [H];
        int [] x = new int [3];
        int [] y = new int [3];
        int n=0;
        for(int i=0; i<H; i++){
            S[i]=sc.next();
            for(int j=0; j<W; j++){
                if(S[i].charAt(j)=='*'){
                    x[n]=j;
                    y[n]=i;
                    n++;
                }
            }
        }
        while(true){
            int dx1 = x[1]-x[0];
            int dy1 = y[1]-y[0];
            int dx2 = x[2]-x[0];
            int dy2 = y[2]-y[0];
            int a = dx1*dx2+dy1*dy2;
            int b = dx1*dx1+dy1*dy1;
            int c = dx2*dx2+dy2*dy2;
            if(a*a!=b*c){
                break;
            }
            x[2]=(int)(Math.random()*W);
            y[2]=(int)(Math.random()*H);
        }
        S[y[2]]=S[y[2]].substring(0,x[2])+"*"+S[y[2]].substring(x[2]+1);
        for(int i=0; i<H; i++){
            System.out.println(S[i]);
        }
    }
}
0