結果

問題 No.1884 Sequence
ユーザー kaichou243kaichou243
提出日時 2022-03-25 23:34:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 208,276 KB
実行使用メモリ 7,144 KB
最終ジャッジ日時 2024-10-14 07:48:57
合計ジャッジ時間 6,776 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 136 ms
7,012 KB
testcase_11 AC 137 ms
7,020 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 27 ms
6,820 KB
testcase_15 AC 86 ms
6,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 83 ms
6,820 KB
testcase_19 AC 67 ms
6,816 KB
testcase_20 AC 72 ms
6,820 KB
testcase_21 AC 55 ms
6,820 KB
testcase_22 AC 78 ms
6,816 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 131 ms
7,020 KB
testcase_26 AC 137 ms
7,144 KB
testcase_27 AC 32 ms
6,820 KB
testcase_28 AC 32 ms
6,816 KB
testcase_29 AC 32 ms
6,816 KB
testcase_30 AC 32 ms
6,816 KB
testcase_31 AC 71 ms
6,820 KB
testcase_32 AC 131 ms
7,092 KB
testcase_33 AC 125 ms
6,908 KB
testcase_34 AC 125 ms
7,016 KB
testcase_35 AC 38 ms
6,820 KB
testcase_36 AC 91 ms
6,820 KB
testcase_37 AC 124 ms
7,016 KB
testcase_38 AC 113 ms
7,012 KB
testcase_39 AC 51 ms
6,820 KB
testcase_40 AC 55 ms
6,816 KB
testcase_41 AC 112 ms
7,016 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
    int n;
    cin>>n;
    vector<ll> a(n);
    ll mx=0,mn=1e18;
    vector<ll> t;
    ll cnt=0;
    for(int i=0;i<n;i++){
        cin>>a[i];
        if(a[i]!=0){
            mx=max(mx,a[i]);
            mn=min(mn,a[i]);
            t.push_back(a[i]);
        }else{
            cnt++;
        }
    }
    ll Mn=1e18;
    sort(t.begin(),t.end());
    for(int i=1;i<t.size();i++){
        Mn=min(Mn,t[i]-t[i-1]);
    }
    if(Mn==0){
        if(mx-mn==0) cout<<"Yes"<<endl;
        else cout<<"No"<<endl;
        return 0;
    }
    if((mx-mn)%Mn==0&&(mx-mn)/Mn-1ll<=cnt) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
}
0