結果

問題 No.707 書道
ユーザー Mcpu3Mcpu3
提出日時 2018-08-22 19:05:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-12-24 22:34:27
合計ジャッジ時間 4,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,348 KB
testcase_01 AC 147 ms
41,284 KB
testcase_02 AC 171 ms
41,520 KB
testcase_03 AC 152 ms
41,332 KB
testcase_04 AC 148 ms
41,152 KB
testcase_05 AC 189 ms
41,560 KB
testcase_06 AC 198 ms
41,364 KB
testcase_07 AC 219 ms
41,588 KB
testcase_08 AC 152 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		double m=Double.MAX_VALUE,t;
		int h=sc.nextInt(),w=sc.nextInt(),i,j,k;
		String p[]=new String[52];
		for(i=1;i<=h;i++) p[i]=sc.next();
		sc.close();
		for(i=1;i<=w;i++) {
			t=0;
			for(j=1;j<=h;j++) for(k=0;k<w;k++) if(p[j].charAt(k)=='1') t+=Math.hypot(k-i+1, j);
			if(m>t) m=t;
		}
		for(i=1;i<=h;i++) {
			t=0;
			for(j=1;j<=h;j++) for(k=0;k<w;k++) if(p[j].charAt(k)=='1') t+=Math.hypot(k-w, j-i);
			if(m>t) m=t;
		}
		for(i=1;i<=w;i++) {
			t=0;
			for(j=1;j<=h;j++) for(k=0;k<w;k++) if(p[j].charAt(k)=='1') t+=Math.hypot(k-i+1, j-h-1);
			if(m>t) m=t;
		}
		for(i=1;i<=h;i++) {
			t=0;
			for(j=1;j<=h;j++) for(k=0;k<w;k++) if(p[j].charAt(k)=='1') t+=Math.hypot(k+1, j-i);
			if(m>t) m=t;
		}
		System.out.print(m);
	}
}
0