結果
問題 | No.467 隠されていたゲーム |
ユーザー | Vir_MeL0 |
提出日時 | 2017-03-22 03:01:05 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,515 bytes |
コンパイル時間 | 3,326 ms |
コンパイル使用メモリ | 76,564 KB |
実行使用メモリ | 37,224 KB |
最終ジャッジ日時 | 2024-07-05 15:42:48 |
合計ジャッジ時間 | 5,308 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
36,776 KB |
testcase_01 | AC | 51 ms
36,512 KB |
testcase_02 | AC | 51 ms
36,720 KB |
testcase_03 | AC | 50 ms
37,016 KB |
testcase_04 | AC | 50 ms
36,608 KB |
testcase_05 | AC | 51 ms
36,924 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 52 ms
36,924 KB |
testcase_09 | WA | - |
testcase_10 | AC | 50 ms
36,804 KB |
testcase_11 | AC | 50 ms
37,036 KB |
testcase_12 | AC | 50 ms
36,640 KB |
testcase_13 | AC | 50 ms
36,980 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 49 ms
36,884 KB |
testcase_18 | AC | 50 ms
36,588 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 50 ms
36,952 KB |
testcase_23 | AC | 49 ms
36,712 KB |
testcase_24 | AC | 49 ms
36,836 KB |
testcase_25 | AC | 49 ms
36,968 KB |
testcase_26 | AC | 50 ms
37,036 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(x, y); int[] d_s = Sort(d); if (dst < d_s[n - 1]) System.out.println("2"); else if (dst <= d_s[0]) { boolean flag = false; for (int dist : d_s) { if (dst == dist) { System.out.println("1"); flag = true; break; } } if (!flag) System.out.println("2"); } else { if (dst % d_s[0] == 0) System.out.println(dst / d_s[0]); else System.out.println(dst / d_s[0] + 1); } } private static int[] Sort(int[] num) { int length = num.length; if(length==1) return num; 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 - 1; 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; } }