結果
問題 | No.707 書道 |
ユーザー | takeya_okino |
提出日時 | 2019-09-29 13:07:29 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,635 bytes |
コンパイル時間 | 2,159 ms |
コンパイル使用メモリ | 78,116 KB |
実行使用メモリ | 54,244 KB |
最終ジャッジ日時 | 2024-10-03 04:27:26 |
合計ジャッジ時間 | 4,093 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 126 ms
53,920 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
ソースコード
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(); double ans = 1000000000; ArrayList<Integer> listx = new ArrayList<Integer>(); ArrayList<Integer> listy = new ArrayList<Integer>(); for(int i = 1; i <= h; i++) { for(int j = 1; j <= w; j++) { int p = sc.nextInt(); if(p == 1) { listx.add(i); listy.add(j); } } } for(int j = 1; j <= w; j++) { double te = 0; for(int k = 0; k < listx.size(); k++) { double t1 = listx.get(k); double t2 = listy.get(k) - j; te += Math.sqrt(t1 * t1 + t2 * t2); } ans = Math.min(ans, te); } for(int j = 1; j <= w; j++) { double te = 0; for(int k = 0; k < listx.size(); k++) { double t1 = listx.get(k) - h - 1; double t2 = listy.get(k) - j; te += Math.sqrt(t1 * t1 + t2 * t2); } ans = Math.min(ans, te); } for(int i = 1; i <= h; i++) { double te = 0; for(int k = 0; k < listx.size(); k++) { double t1 = listx.get(k) - i; double t2 = listy.get(k); te += Math.sqrt(t1 * t1 + t2 * t2); } ans = Math.min(ans, te); } for(int i = 1; i <= h; i++) { double te = 0; for(int k = 0; k < listx.size(); k++) { double t1 = listx.get(k) - i; double t2 = listy.get(k) - w - 1; te += Math.sqrt(t1 * t1 + t2 * t2); } ans = Math.min(ans, te); } System.out.println(ans); } }