結果
問題 |
No.467 隠されていたゲーム
|
ユーザー |
![]() |
提出日時 | 2017-10-17 17:14:50 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 766 bytes |
コンパイル時間 | 1,291 ms |
コンパイル使用メモリ | 158,728 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 22:02:09 |
合計ジャッジ時間 | 1,924 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i, n) for(int i = 0; i < (n); i++) #define MEM(a, x) memset(a, x, sizeof(a)) #define ALL(a) a.begin(), a.end() #define UNIQUE(a) a.erase(unique(ALL(a)), a.end()) typedef long long ll; typedef pair<int, int> P; int n, x, y, d[20]; int main(int argc, char const *argv[]) { ios_base::sync_with_stdio(false); cin >> n; FOR(i, n) cin >> d[i]; cin >> x >> y; x = abs(x); y = abs(y); if (x == 0 && y == 0) { cout << 0 << endl; return 0; } if (x < y) swap(x, y); int ma = *max_element(d, d+n); int ret = x/ma; if (ret == 0) { FOR(i, n) { if (x == d[i]) { cout << 1 << endl; return 0; } } cout << 2 << endl; return 0; } cout << (x%ma==0 ? ret : ret+1) << endl; return 0; }