結果

問題 No.2518 Adjacent Larger
ユーザー FplusFplusFFplusFplusF
提出日時 2023-10-27 21:54:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 806 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 202,660 KB
実行使用メモリ 4,840 KB
最終ジャッジ日時 2023-10-27 21:54:11
合計ジャッジ時間 3,049 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 13 ms
4,840 KB
testcase_17 AC 8 ms
4,348 KB
testcase_18 AC 8 ms
4,372 KB
testcase_19 AC 6 ms
4,348 KB
testcase_20 AC 9 ms
4,348 KB
testcase_21 AC 15 ms
4,840 KB
testcase_22 AC 14 ms
4,840 KB
testcase_23 AC 13 ms
4,840 KB
testcase_24 AC 12 ms
4,840 KB
testcase_25 AC 11 ms
4,840 KB
testcase_26 AC 12 ms
4,840 KB
testcase_27 AC 11 ms
4,840 KB
testcase_28 AC 11 ms
4,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
void solve(){
    ll n;
    cin >> n;
    vector<ll> a(n);
    ll cnt=0;
    rep(i,n){
        cin >> a[i];
        if(a[i]==1) cnt++;
    }
    bool ok=true;
    rep(i,n-1){
        if(a[i]==a[i+1]&&a[i]!=1) ok=false;
    }
    if(cnt==n||!ok) cout << "No\n";
    else cout << "Yes\n";
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll t;
    cin >> t;
    while(t--){
        solve();
    }
}
0