結果

問題 No.2811 Calculation Within Sequence
ユーザー i_takui_taku
提出日時 2024-07-19 21:39:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 162,512 KB
最終ジャッジ日時 2024-07-19 21:39:11
合計ジャッジ時間 8,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 154 ms
131,308 KB
testcase_06 AC 187 ms
162,512 KB
testcase_07 AC 149 ms
131,400 KB
testcase_08 AC 199 ms
162,508 KB
testcase_09 AC 198 ms
147,664 KB
testcase_10 AC 180 ms
157,004 KB
testcase_11 WA -
testcase_12 AC 151 ms
133,060 KB
testcase_13 AC 146 ms
130,680 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 151 ms
131,440 KB
testcase_18 WA -
testcase_19 AC 165 ms
147,656 KB
testcase_20 WA -
testcase_21 AC 144 ms
130,920 KB
testcase_22 AC 151 ms
131,824 KB
testcase_23 AC 154 ms
131,964 KB
testcase_24 AC 139 ms
112,816 KB
testcase_25 AC 69 ms
80,000 KB
testcase_26 WA -
testcase_27 AC 125 ms
114,620 KB
testcase_28 AC 60 ms
72,960 KB
testcase_29 AC 107 ms
99,440 KB
testcase_30 AC 101 ms
97,920 KB
testcase_31 WA -
testcase_32 AC 56 ms
69,888 KB
testcase_33 WA -
testcase_34 AC 107 ms
108,632 KB
testcase_35 AC 75 ms
87,680 KB
testcase_36 AC 116 ms
101,556 KB
testcase_37 AC 88 ms
94,336 KB
testcase_38 WA -
testcase_39 AC 89 ms
96,384 KB
testcase_40 AC 104 ms
107,008 KB
testcase_41 AC 107 ms
98,176 KB
testcase_42 AC 81 ms
91,904 KB
testcase_43 AC 91 ms
97,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
T = list(map(int, input().split()))
S = list(map(int, input().split()))
if len(set(T)) == 1:
    if all(s % T[0] == 0 for s in S):
        print('Yes')
    else:
        print('No')
    exit()
if all(t & 1 == 0 for t in T):
    if any(s & 1 for s in S):
        print('No')
    else:
        print('Yes')
    exit()
if any(t & 1 for t in T):
    print('Yes')
    exit()
print('No')
0