結果

問題 No.2836 Comment Out
ユーザー get_tanniget_tanni
提出日時 2024-08-09 21:37:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 2,688 bytes
コンパイル時間 7,551 ms
コンパイル使用メモリ 350,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-09 21:37:48
合計ジャッジ時間 11,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 32 ms
5,376 KB
testcase_08 AC 33 ms
5,376 KB
testcase_09 AC 88 ms
5,376 KB
testcase_10 AC 90 ms
5,376 KB
testcase_11 AC 89 ms
5,376 KB
testcase_12 AC 88 ms
5,376 KB
testcase_13 AC 88 ms
5,376 KB
testcase_14 AC 89 ms
5,376 KB
testcase_15 AC 89 ms
5,376 KB
testcase_16 AC 87 ms
5,376 KB
testcase_17 AC 90 ms
5,376 KB
testcase_18 AC 87 ms
5,376 KB
testcase_19 AC 88 ms
5,376 KB
testcase_20 AC 85 ms
5,376 KB
testcase_21 AC 88 ms
5,376 KB
testcase_22 AC 88 ms
5,376 KB
testcase_23 AC 86 ms
5,376 KB
testcase_24 AC 42 ms
5,376 KB
testcase_25 AC 57 ms
5,376 KB
testcase_26 AC 24 ms
5,376 KB
testcase_27 AC 61 ms
5,376 KB
testcase_28 AC 50 ms
5,376 KB
testcase_29 AC 57 ms
5,376 KB
testcase_30 AC 36 ms
5,376 KB
testcase_31 AC 56 ms
5,376 KB
testcase_32 AC 19 ms
5,376 KB
testcase_33 AC 35 ms
5,376 KB
testcase_34 AC 24 ms
5,376 KB
testcase_35 AC 70 ms
5,376 KB
testcase_36 AC 32 ms
5,376 KB
testcase_37 AC 67 ms
5,376 KB
testcase_38 AC 49 ms
5,376 KB
testcase_39 AC 43 ms
5,376 KB
testcase_40 AC 45 ms
5,376 KB
testcase_41 AC 57 ms
5,376 KB
testcase_42 AC 54 ms
5,376 KB
testcase_43 AC 18 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 1 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
#include <atcoder/all>

using std::cout; using namespace std; using ll=long long; using ld=long double; using P=array<ll,2>;
#define rep(i,n) for (ll i=0,siz=(n);i<siz;i++)
#define rep2(i,a,b) for (ll i=(a),siz=(b);i<siz;i++)
#define repd(i,a,b) for (ll i=(a),siz=(b);i>=siz;i--)
#define popcount __builtin_popcountll
#define cin(a) ll a; cin >> a;
#define cin2(a,b) ll a,b; cin >> a >> b;
#define cin3(a,b,c) ll a,b,c; cin >> a >> b >> c;
#define cinvec(v) vector<ll> v(N); rep(i,N) cin >> v[i];
#define cinvec2(v,n) vector<ll> v(n); rep(i,n) cin >> v[i];
#define cins(s) string s; cin >> s;
#define cinc(c) char c; cin >> c;
#define seg_RaRmax atcoder::lazy_segtree<ll, [&](ll a, ll b){ return max(a,b);},[&](){return 0;},ll,[&](ll m, ll n){ return m+n;}, [&](ll a, ll b){return a+b;},[&](){return 0;}>
#define seg_RaRsum atcoder::lazy_segtree<array<ll,2>, [&](array<ll,2> a, array<ll,2> b){ return array<ll,2>{a[0]+b[0],a[1]+b[1]};},[&](){return array<ll,2>{0,0};},ll,[&](ll m, array<ll,2> n){ return array<ll,2>{m[0]+n*m[1],m[1]};}, [&](ll a, ll b){return a+b;},[&](){return 0;}>
vector<ll> dx = {0,-1,0,1},dy = {1,0,-1,0}, ddx = {0,-1,-1,-1,0,1,1,1}, ddy = {1,1,0,-1,-1,-1,0,1};
void yesno(bool b) {cout << (b?"Yes":"No") << endl;}
template<class T> void sortunique(vector<T> &V) {sort(V.begin(), V.end()); V.erase(unique(V.begin(), V.end()), V.end());}
template<typename T> void outvec(const std::initializer_list<T>& list) { bool first = true; for (const auto& elem : list) 
{ if (!first) std::cout << " "; std::cout << elem; first = false; } std::cout << std::endl; }
template<typename T> void outvec(const std::vector<T>& vec) { bool first = true; for (const auto& elem : vec) 
{ if (!first) std::cout << " "; std::cout << elem; first = false; } std::cout << std::endl; }
template<typename T, size_t N> void outvecp(const std::vector<std::array<T,N>>& vec) { bool first = true; for (const auto& elem : vec) 
{ if (!first) std::cout << " "; for (int i = 0; i < N; i++) std::cout << elem[i] << " "; first = false; } std::cout << std::endl; }
vector<ll> compress(vector<ll> &A){vector<ll> B = A; sortunique(B); rep(i,A.size()) A[i] = lower_bound(B.begin(),B.end(),A[i]) - B.begin(); return B;}
ll bs(ll l, ll r, function<bool(ll)> f) { while (r-l > 1) { ll m = (l+r)/2; if (f(m)) r = m; else l = m; } return r; }
ll msb(ll N) { assert(N>0); return 63 - __builtin_clzll(N); }


int main() {
    cin(N); cinvec(A);
    sort(A.begin(),A.end());
    if (A[0] > 1) {
        cout << "No" << endl;
        return 0;
    }

    cout << "Yes" << endl;
    
    return 0;
} 
0