結果
問題 | No.467 隠されていたゲーム |
ユーザー | Vir_MeL0 |
提出日時 | 2017-03-22 03:19:14 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 1,581 bytes |
コンパイル時間 | 2,040 ms |
コンパイル使用メモリ | 77,528 KB |
実行使用メモリ | 37,172 KB |
最終ジャッジ日時 | 2024-10-04 16:28:43 |
合計ジャッジ時間 | 4,198 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,964 KB |
testcase_01 | AC | 52 ms
36,704 KB |
testcase_02 | AC | 52 ms
36,820 KB |
testcase_03 | AC | 50 ms
36,832 KB |
testcase_04 | AC | 50 ms
37,004 KB |
testcase_05 | AC | 50 ms
36,584 KB |
testcase_06 | AC | 49 ms
37,108 KB |
testcase_07 | AC | 50 ms
36,924 KB |
testcase_08 | AC | 49 ms
37,056 KB |
testcase_09 | AC | 50 ms
36,840 KB |
testcase_10 | AC | 51 ms
36,924 KB |
testcase_11 | AC | 49 ms
36,848 KB |
testcase_12 | AC | 50 ms
37,056 KB |
testcase_13 | AC | 49 ms
37,172 KB |
testcase_14 | AC | 52 ms
37,076 KB |
testcase_15 | AC | 51 ms
37,044 KB |
testcase_16 | AC | 52 ms
36,728 KB |
testcase_17 | AC | 52 ms
37,072 KB |
testcase_18 | AC | 50 ms
36,600 KB |
testcase_19 | AC | 49 ms
37,128 KB |
testcase_20 | AC | 48 ms
36,760 KB |
testcase_21 | AC | 50 ms
36,976 KB |
testcase_22 | AC | 48 ms
37,004 KB |
testcase_23 | AC | 49 ms
36,800 KB |
testcase_24 | AC | 49 ms
37,080 KB |
testcase_25 | AC | 48 ms
36,672 KB |
testcase_26 | AC | 48 ms
37,172 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); int n = Integer.parseInt(str); str = br.readLine(); String[] dstr = str.split(" "); int[] d = new int[n]; for (int i = 0; i < n; i++) d[i] = Integer.parseInt(dstr[i]); str = br.readLine(); String[] coordinate = str.split(" "); int x = Integer.parseInt(coordinate[0]); int y = Integer.parseInt(coordinate[1]); int dst = Math.max(Math.abs(x), Math.abs(y)); d = Sort(d); if (dst == 0) System.out.println("0"); else if (dst < d[0]) System.out.println("2"); else if (dst <= d[n - 1]) { boolean flag = false; for (int dist : d) { if (dst == dist) { System.out.println("1"); flag = true; break; } } if (!flag) System.out.println("2"); } else { if (dst % d[n - 1] == 0) System.out.println(dst / d[n - 1]); else System.out.println(dst / d[n - 1] + 1); } } private static int[] Sort(int[] num) { int length = num.length; if (length == 1) return num; else if (length == 2 && num[0] > num[1]) { int tmpnum = num[0]; num[0] = num[1]; num[1] = tmpnum; } else { for (int i = 1; i < length; i++) { for (int j = 0; j < length - i; j++) { if (num[j] > num[j + 1]) { int tmpnum = num[j]; num[j] = num[j + 1]; num[j + 1] = tmpnum; } } } } return num; } }