結果

問題 No.2811 Calculation Within Sequence
ユーザー 乾麺乾麺
提出日時 2024-07-19 21:43:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 3,773 ms
コンパイル使用メモリ 266,016 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 21:43:33
合計ジャッジ時間 10,762 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 WA -
testcase_05 AC 160 ms
5,376 KB
testcase_06 AC 160 ms
5,376 KB
testcase_07 AC 160 ms
5,376 KB
testcase_08 AC 162 ms
5,376 KB
testcase_09 AC 160 ms
5,376 KB
testcase_10 AC 160 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 160 ms
5,376 KB
testcase_13 AC 159 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 161 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 160 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 162 ms
5,376 KB
testcase_22 AC 162 ms
5,376 KB
testcase_23 AC 173 ms
5,376 KB
testcase_24 AC 92 ms
5,376 KB
testcase_25 AC 33 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 100 ms
5,376 KB
testcase_28 AC 16 ms
5,376 KB
testcase_29 AC 73 ms
5,376 KB
testcase_30 AC 81 ms
5,376 KB
testcase_31 WA -
testcase_32 AC 22 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 93 ms
5,376 KB
testcase_35 AC 48 ms
5,376 KB
testcase_36 AC 78 ms
5,376 KB
testcase_37 AC 55 ms
5,376 KB
testcase_38 WA -
testcase_39 AC 60 ms
5,376 KB
testcase_40 AC 85 ms
5,376 KB
testcase_41 AC 99 ms
5,376 KB
testcase_42 AC 47 ms
5,376 KB
testcase_43 AC 63 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pi;
#define ALL(x) x.begin(),x.end()
#define LB(A,x) (ll)(lower_bound(ALL(A),x)-A.begin())
#define rep(i,a,b) for(int i=a;i<b;i++)
using vi = vector<int>; 
using vvi = vector<vi>; 
using li =vector<ll>;
using lli=vector<li>;
const long long mod=998244353;
//for (auto [key, val] : mp)
int main() { 
  int a,b;cin>>a>>b;
  bool e=1,o=0;
  rep(i,0,a){
  	int c;cin>>c;
  	if(c%2==1)e=0;
  }
  rep(i,0,b){
  	int c;cin>>c;
  	if(c%2==1)o=1;
  }
  if(e&o)cout<<"No";
  else cout<<"Yes";
}
0