結果

問題 No.467 隠されていたゲーム
ユーザー GrenacheGrenache
提出日時 2016-12-17 12:01:30
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,421 bytes
コンパイル時間 4,341 ms
コンパイル使用メモリ 80,740 KB
実行使用メモリ 106,304 KB
最終ジャッジ日時 2024-05-08 04:04:48
合計ジャッジ時間 9,672 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
47,092 KB
testcase_01 AC 114 ms
40,204 KB
testcase_02 AC 115 ms
40,048 KB
testcase_03 AC 130 ms
41,480 KB
testcase_04 AC 127 ms
41,336 KB
testcase_05 AC 116 ms
40,320 KB
testcase_06 AC 131 ms
41,320 KB
testcase_07 AC 114 ms
40,464 KB
testcase_08 AC 128 ms
40,956 KB
testcase_09 AC 123 ms
41,136 KB
testcase_10 AC 128 ms
41,428 KB
testcase_11 AC 114 ms
40,180 KB
testcase_12 AC 128 ms
41,424 KB
testcase_13 AC 129 ms
41,968 KB
testcase_14 AC 117 ms
40,124 KB
testcase_15 AC 130 ms
41,252 KB
testcase_16 AC 128 ms
41,496 KB
testcase_17 AC 114 ms
40,064 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder467 {

	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 % maxd == 0) {
			pr.println(maxx / maxd);
			return;
		} else {
			int cnt = maxx / maxd;
			SortedSet<Long> hs = new TreeSet<>();
			Queue<Long> hstmp = new ArrayDeque<>();
			for (int e : d) {
				hs.add((long)e);
			}

			for (int i = 0; i <= cnt; i++) {
				if (hs.contains((long)(maxx - maxd * (cnt - i)))) {
					pr.println(cnt + 1);
					return;
				}

				hstmp.clear();
				for (long e : hs) {
					for (int j = 0, size = d.length; j < size - 1; j++) {
						int e1 = d[j];
						hstmp.add(e + e1);
					}
				}
				hs.addAll(hstmp);
			}

			if (x != y) {
				pr.println(Math.max(1, maxx / maxd) + 1);
			} else {
				pr.println(Math.max(1, maxx / maxd) + 1 + 1);
			}
		}
	}

	// ---------------------------------------------------
	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