結果

問題 No.467 隠されていたゲーム
ユーザー masa
提出日時 2017-04-21 21:51:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 73,392 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-07-20 05:13:55
合計ジャッジ時間 1,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <numeric>

using namespace std;

int main() {
	int n, x, y;
	cin >> n;

	vector<int> d(n, 0);
	for (int i = 0; i < n; i++) {
		cin >> d[i];
	}
	int d_max = *max_element(d.begin(), d.end());

	cin >> x >> y;
	int goal = max(abs(x), abs(y));

	int ans;

	if (find(d.begin(), d.end(), goal) != d.end()) {
		ans = 1;
	} else if (goal <= 2 * d_max) {
		ans = 2;
	} else {
		ans = goal / (2 * d_max) * 2;
		goal %= 2 * d_max;
		if (goal > 0) {
			ans++;
		}
		if (goal > d_max) {
			ans++;
		}
	}

	cout << ans << endl;
	return 0;
}
0