結果

問題 No.467 隠されていたゲーム
ユーザー GrenacheGrenache
提出日時 2016-12-18 11:38:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 2,834 ms
コンパイル使用メモリ 78,440 KB
実行使用メモリ 55,140 KB
最終ジャッジ日時 2024-10-04 16:18:23
合計ジャッジ時間 6,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,052 KB
testcase_01 AC 109 ms
54,156 KB
testcase_02 AC 109 ms
54,364 KB
testcase_03 AC 113 ms
54,036 KB
testcase_04 AC 102 ms
53,168 KB
testcase_05 AC 113 ms
54,200 KB
testcase_06 AC 100 ms
53,164 KB
testcase_07 AC 103 ms
53,276 KB
testcase_08 AC 117 ms
54,152 KB
testcase_09 AC 112 ms
54,232 KB
testcase_10 AC 113 ms
54,184 KB
testcase_11 AC 103 ms
53,264 KB
testcase_12 AC 107 ms
55,140 KB
testcase_13 AC 115 ms
54,404 KB
testcase_14 AC 113 ms
53,996 KB
testcase_15 AC 104 ms
53,008 KB
testcase_16 AC 104 ms
53,020 KB
testcase_17 AC 111 ms
53,988 KB
testcase_18 AC 113 ms
54,184 KB
testcase_19 AC 111 ms
54,032 KB
testcase_20 AC 115 ms
54,180 KB
testcase_21 AC 103 ms
53,136 KB
testcase_22 AC 113 ms
54,332 KB
testcase_23 AC 112 ms
54,108 KB
testcase_24 AC 101 ms
53,124 KB
testcase_25 AC 112 ms
54,220 KB
testcase_26 AC 110 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder467_1 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		int[] d = new int[n];
		for (int i = 0; i < n; i++) {
			d[i] = sc.nextInt();
		}
		Arrays.sort(d);
		int maxd = d[n - 1];

		int x = Math.abs(sc.nextInt());
		int y = Math.abs(sc.nextInt());
		int maxx = Math.max(x, y);

		if (maxx == 0) {
			pr.println(0);
			return;
		}

		for (int e : d) {
			if (e == maxx) {
				pr.println(1);
				return;
			}
		}

		if (maxx % maxd == 0) {
			pr.println(maxx / maxd);
		} else {
			pr.println(Math.max(0, maxx / maxd - 1) + 2);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0