結果
問題 | No.1990 Candy Boxes |
ユーザー | Rubikun |
提出日時 | 2024-07-20 19:10:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,179 bytes |
コンパイル時間 | 2,091 ms |
コンパイル使用メモリ | 203,624 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-20 19:10:28 |
合計ジャッジ時間 | 6,717 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 16 ms
5,376 KB |
testcase_13 | AC | 16 ms
5,376 KB |
testcase_14 | AC | 9 ms
5,376 KB |
testcase_15 | AC | 11 ms
6,384 KB |
testcase_16 | AC | 11 ms
6,440 KB |
testcase_17 | AC | 13 ms
6,544 KB |
testcase_18 | AC | 13 ms
6,684 KB |
testcase_19 | AC | 15 ms
6,604 KB |
testcase_20 | AC | 18 ms
6,640 KB |
testcase_21 | AC | 17 ms
6,564 KB |
testcase_22 | AC | 14 ms
5,376 KB |
testcase_23 | AC | 18 ms
6,604 KB |
testcase_24 | AC | 18 ms
6,564 KB |
testcase_25 | AC | 23 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 14 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | AC | 12 ms
6,572 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 12 ms
5,404 KB |
testcase_35 | AC | 17 ms
6,848 KB |
testcase_36 | AC | 16 ms
6,668 KB |
testcase_37 | AC | 14 ms
6,672 KB |
testcase_38 | AC | 11 ms
6,436 KB |
testcase_39 | AC | 13 ms
6,676 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 10 ms
6,460 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | AC | 2 ms
5,376 KB |
testcase_53 | WA | - |
testcase_54 | AC | 2 ms
5,376 KB |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | AC | 2 ms
5,376 KB |
testcase_58 | AC | 2 ms
5,376 KB |
testcase_59 | AC | 2 ms
5,376 KB |
testcase_60 | WA | - |
testcase_61 | AC | 1 ms
5,376 KB |
testcase_62 | AC | 2 ms
5,376 KB |
testcase_63 | AC | 2 ms
5,376 KB |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | WA | - |
testcase_67 | AC | 17 ms
6,792 KB |
testcase_68 | AC | 9 ms
5,376 KB |
testcase_69 | AC | 18 ms
6,760 KB |
testcase_70 | WA | - |
testcase_71 | WA | - |
testcase_72 | WA | - |
testcase_73 | AC | 19 ms
6,944 KB |
testcase_74 | WA | - |
testcase_75 | AC | 12 ms
6,628 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=998244353,MAX=300005,INF=15<<26; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); ll N;cin>>N; vector<ll> A(N); for(int i=0;i<N;i++) cin>>A[i]; vector<ll> B; for(int i=0;i<N-1;i++){ B.push_back(A[i]); A[i+1]-=A[i]; } if(A.back()){ cout<<"No\n"; return 0; } for(ll x:B){ if(x<0){ cout<<"No\n"; return 0; } } int i=0; while(i<si(B)){ if(B[i]%2==0) i++; else{ int j=i; while(j<si(B)&&B[j]%2==0) j++; if((j-i)%2==0){ cout<<"No\n"; return 0; } } } cout<<"Yes\n"; }