結果
| 問題 | No.467 隠されていたゲーム |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-06-19 17:52:55 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 777 bytes |
| 記録 | |
| コンパイル時間 | 561 ms |
| コンパイル使用メモリ | 74,104 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-06-19 17:53:00 |
| 合計ジャッジ時間 | 3,986 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | AC * 1 RE * 23 |
ソースコード
#include <iostream>
#include <cstdio>
using namespace std;
const int N = 20, INF = 0x3f3f3f3f;
int n, d[N], tx, ty;
int main() {
// freopen("game.in", "r", stdin);
// freopen("game.out", "w", stdout);
scanf("%d", &n);
for (int i = 1; i <= n; ++i) scanf("%d", &d[i]);
scanf("%d%d", &tx, &ty);
int dist = max(abs(tx), abs(ty));
if (dist == 0) {
puts("0");
return 0;
}
int ans = INF;
for (int i = 0; i < n; ++i) {
int cnt = 0;
if (dist == d[i]) {
cnt = 1;
} else if (dist < d[i]) {
cnt = 2;
} else {
cnt = (dist + d[i] - 1) / d[i];
}
if (cnt < ans) {
ans = cnt;
}
}
printf("%d\n", ans);
return 0;
}