結果

問題 No.467 隠されていたゲーム
ユーザー Hoi_koroHoi_koro
提出日時 2016-12-19 01:07:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,420 bytes
コンパイル時間 994 ms
コンパイル使用メモリ 118,436 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-04 16:19:33
合計ジャッジ時間 1,683 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:60:13: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized]
   60 |     cout << ans <<endl;
      |             ^~~
main.cpp:44:15: note: 'ans' was declared here
   44 |     int n,x,y,ans;
      |               ^~~

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <iomanip>
#include <cstdio>
#include <cassert>
#include <algorithm>
#include <iterator>
#include <string>
#include <vector>
#include <list>
#include <deque>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <tuple>
#include <queue>
#include <stack>
#include <functional>
#include <utility>
#include <complex>
#include <bitset>
#include <numeric>
#include <random>
using namespace std;

#define REP(i,n) for(int (i)=0; (i)<(n) ;++(i))
#define REPN(i,a,n) FOR((i),(a),(a)+(n))
#define FOR(i,a,b) for(int (i)=(a); (i)<(b) ;++(i))
#define PB push_back
#define MP make_pair
#define SE second
#define FI first
#define DBG(a) cerr<<(a)<<endl;
#define dump(a) cerr<<#a <<' '<< a <<endl;
#define ALL(v) (v).begin(),(v).end()
typedef long long LL;  typedef pair<LL, LL> PLL; typedef vector<LL> VLL;
typedef pair<int,int>PI; typedef vector<int> VI;
const LL LINF=334ll<<53; const int INF=15<<26; const LL MOD=1E9+7;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n,x,y,ans;
    cin>> n;
    VI d(n);
    REP(i,n)cin >> d[i];
    sort(ALL(d));
    cin >> x >> y;
    int ma=max(abs(x),abs(y));
    if(ma==0){
        ans=0;
    }else if(ma>d[n-1]){
        ans=(ma-1)/d[n-1]+1;
    }else if(*lower_bound(ALL(d),ma)==ma){
        ans=1;
    }else if(ma<d[n-1]){
        ans=2;
    }
    cout << ans <<endl;
    return 0;
}
0