結果
問題 |
No.467 隠されていたゲーム
|
ユーザー |
![]() |
提出日時 | 2017-10-17 17:12:41 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 687 bytes |
コンパイル時間 | 1,217 ms |
コンパイル使用メモリ | 159,788 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 21:59:21 |
合計ジャッジ時間 | 2,091 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 21 WA * 3 |
ソースコード
#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 < 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 << ret+1 << endl; return 0; }