結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 150 ms
132,716 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 137 ms
132,192 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 132 ms
132,576 KB
testcase_13 AC 133 ms
133,056 KB
testcase_14 WA -
testcase_15 AC 134 ms
132,684 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 139 ms
132,416 KB
testcase_20 AC 140 ms
132,448 KB
testcase_21 AC 138 ms
132,820 KB
testcase_22 AC 134 ms
132,812 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 101 ms
98,276 KB
testcase_28 AC 50 ms
67,456 KB
testcase_29 WA -
testcase_30 AC 89 ms
96,940 KB
testcase_31 AC 90 ms
104,320 KB
testcase_32 AC 53 ms
70,784 KB
testcase_33 AC 87 ms
98,688 KB
testcase_34 AC 97 ms
100,920 KB
testcase_35 AC 69 ms
86,784 KB
testcase_36 AC 87 ms
97,792 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 77 ms
95,476 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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]) else 'No')
0