結果
問題 | No.94 圏外です。(EASY) |
ユーザー | AoiroFukurou |
提出日時 | 2016-12-18 15:48:09 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 719 bytes |
コンパイル時間 | 3,207 ms |
コンパイル使用メモリ | 77,172 KB |
実行使用メモリ | 57,152 KB |
最終ジャッジ日時 | 2024-05-08 06:41:52 |
合計ジャッジ時間 | 7,523 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
41,552 KB |
testcase_01 | AC | 111 ms
41,268 KB |
testcase_02 | WA | - |
testcase_03 | AC | 115 ms
41,088 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
ソースコード
package yukicoder; import java.util.Scanner; public class No_94 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); if(N == 0 ){ System.out.println(1); return; } int[] x = new int[N]; int[] y = new int[N]; for(int i = 0; i < N; i++){ x[i] = sc.nextInt(); y[i] = sc.nextInt(); } double tmp = Math.sqrt(Math.pow(x[0] - x[1], 2) + Math.pow(y[0] - y[1], 2)); for(int i = 0; i < N - 1; i++){ for(int j = i + 1; j < N; j++){ double d = Math.sqrt(Math.pow(x[i] - x[j], 2) + Math.pow(y[i] - y[j], 2)); if(d > tmp){ tmp = d; } } } if(tmp > 10.0){ System.out.println(2); }else{ double ans = tmp + 2.0; System.out.println(ans); } } }