結果

問題 No.2836 Comment Out
ユーザー Jeeho YoonJeeho Yoon
提出日時 2024-08-09 21:36:03
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,633 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 279,500 KB
実行使用メモリ 7,784 KB
最終ジャッジ日時 2024-08-09 21:36:11
合計ジャッジ時間 6,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 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 16 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
5,376 KB
testcase_15 AC 41 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 39 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 41 ms
5,376 KB
testcase_21 AC 41 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 20 ms
5,376 KB
testcase_25 AC 32 ms
5,376 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 30 ms
5,376 KB
testcase_28 AC 27 ms
5,376 KB
testcase_29 AC 26 ms
5,376 KB
testcase_30 AC 17 ms
5,376 KB
testcase_31 AC 27 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 19 ms
5,376 KB
testcase_34 AC 12 ms
5,376 KB
testcase_35 AC 34 ms
5,376 KB
testcase_36 AC 18 ms
5,376 KB
testcase_37 AC 32 ms
5,376 KB
testcase_38 AC 24 ms
5,376 KB
testcase_39 AC 23 ms
5,376 KB
testcase_40 AC 24 ms
5,376 KB
testcase_41 AC 26 ms
5,376 KB
testcase_42 AC 27 ms
5,376 KB
testcase_43 AC 10 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 2 ms
5,376 KB
testcase_47 WA -
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//#pragma GCC optimize("O3") // optimization
//#pragma GCC optimize("Ofast") // optimization
//#pragma GCC optimize("unroll-loops") // optimization
using namespace std;
#define i32 signed
#define int long long // CP
#define i64 long long
#define endl '\n'
#define elif else if
#define fi first
#define se second
#define pb push_back
#define p32 pair<i32,i32>
#define p64 pair<i64,i64>
#define f2(i,x) for((i)=0;(i)<(x);(i)++)
#define f2b(i,x) for((i)=(x)-1;(i)>=0;(i)--)
#define f3(i,f,t) for((i)=(f);(i)<(t);(i)++)
#define fall(x) (x).begin(), (x).end()
#define sort1(x) sort(fall(x))
#define rev(x) reverse(fall(x))
#define fast ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define fl fflush(stdout)
#define nl cout<<endl;fflush(stdout)
i64 gcd(i64 a, i64 b){if(a<b){a=a^b;b=a^b;a=a^b;} return b==0?a:gcd(b,a%b);}
i64 lcm(i64 a, i64 b){return a/gcd(a,b)*b;}
i64 expm(i64 a, i64 b, i64 m){i64 r=1;while(b){if(b&1)r=r*a%m;a=a*a%m;b>>=1;}return r%m;}
i64 expm(i64 a, i64 b){i64 r=1,m=1e9+7;while(b){if(b&1)r=r*a%m;a=a*a%m;b>>=1;}return r%m;}
i64 minv(i64 a, i64 m){return expm(a,m-2,m);}
i64 ncrm(i64 n, i64 r, i64 m){i64 i,j,k; i64 out=1; f3(i,1,n+1){out*=i;out%=m;}f3(i,1,r+1){out*=minv(i,m);out%=m;}f3(i,1,n-r+1){out*=minv(i,m);out%=m;}return out%m;}
int n,m,k,a[300010],b[300010]; char c[300010];
void f(){
    int i,j,l;
    cin>>n;f2(i,n)cin>>a[i]; sort(a,a+n);
    m=0; f2(i,n){
        if(a[i]==1) m++;
        else if(a[i]-1>m) break;
        else m++;
    } if(i==n) cout<<"Yes\n";
    else cout<<"No\n";
}
i32 main(){
    fast;
//    int tc; cin>>tc;
//    while(tc--)f();
    f();
    return 0;
}
0