結果

問題 No.467 隠されていたゲーム
ユーザー Vir_MeL0Vir_MeL0
提出日時 2017-03-22 03:10:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,110 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 76,716 KB
実行使用メモリ 37,160 KB
最終ジャッジ日時 2024-07-05 17:51:38
合計ジャッジ時間 3,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,952 KB
testcase_01 AC 46 ms
36,892 KB
testcase_02 AC 46 ms
36,608 KB
testcase_03 AC 46 ms
37,040 KB
testcase_04 AC 46 ms
37,064 KB
testcase_05 AC 46 ms
36,988 KB
testcase_06 AC 46 ms
37,052 KB
testcase_07 AC 45 ms
37,044 KB
testcase_08 AC 46 ms
36,900 KB
testcase_09 AC 45 ms
36,840 KB
testcase_10 AC 45 ms
36,920 KB
testcase_11 AC 45 ms
36,836 KB
testcase_12 AC 45 ms
36,680 KB
testcase_13 AC 44 ms
36,552 KB
testcase_14 AC 44 ms
36,948 KB
testcase_15 AC 45 ms
37,016 KB
testcase_16 AC 45 ms
37,116 KB
testcase_17 AC 44 ms
37,116 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 45 ms
37,160 KB
testcase_24 AC 45 ms
36,928 KB
testcase_25 AC 45 ms
36,860 KB
testcase_26 AC 47 ms
36,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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));
		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);
		}

	}

}
0