結果

問題 No.2811 Calculation Within Sequence
ユーザー るこーそーるこーそー
提出日時 2024-09-27 21:39:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,832 KB
最終ジャッジ日時 2024-09-27 21:39:26
合計ジャッジ時間 7,243 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 137 ms
133,704 KB
testcase_06 AC 148 ms
133,956 KB
testcase_07 AC 157 ms
134,084 KB
testcase_08 AC 164 ms
134,272 KB
testcase_09 AC 145 ms
134,212 KB
testcase_10 AC 132 ms
133,960 KB
testcase_11 WA -
testcase_12 AC 153 ms
133,832 KB
testcase_13 AC 144 ms
132,344 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 155 ms
134,104 KB
testcase_18 WA -
testcase_19 AC 143 ms
134,224 KB
testcase_20 WA -
testcase_21 AC 132 ms
132,460 KB
testcase_22 AC 134 ms
132,828 KB
testcase_23 AC 142 ms
134,832 KB
testcase_24 AC 98 ms
107,136 KB
testcase_25 AC 62 ms
78,720 KB
testcase_26 WA -
testcase_27 AC 114 ms
98,304 KB
testcase_28 AC 51 ms
67,712 KB
testcase_29 AC 86 ms
98,944 KB
testcase_30 AC 93 ms
97,960 KB
testcase_31 WA -
testcase_32 AC 52 ms
70,784 KB
testcase_33 WA -
testcase_34 AC 94 ms
100,520 KB
testcase_35 AC 69 ms
88,320 KB
testcase_36 AC 87 ms
97,920 KB
testcase_37 AC 76 ms
93,048 KB
testcase_38 WA -
testcase_39 AC 78 ms
96,128 KB
testcase_40 AC 96 ms
107,272 KB
testcase_41 AC 97 ms
97,664 KB
testcase_42 AC 68 ms
87,040 KB
testcase_43 AC 81 ms
98,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
T=list(map(int,input().split()))
S=list(map(int,input().split()))

print('Yes' if sum([t%2 for t in T]) or sum([s%2 for s in S])==0 else 'No')
0