結果

問題 No.1219 Mancala Combo
ユーザー shiomusubi496
提出日時 2020-09-04 22:51:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 1,434 ms
コンパイル使用メモリ 167,748 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-26 20:46:46
合計ジャッジ時間 2,805 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    int N;
    cin>>N;
    vector<int> A(N);
    for(int &i:A)cin>>i;
    while(A[--N]==0);
    for(int i=1;i<N;i++){
        if(A[i]!=1){
            puts("No");
            return 0;
        }
    }
    if(N!=0 && A[N]!=3)puts("No");
    else puts("Yes");
}
0