結果

問題 No.2811 Calculation Within Sequence
ユーザー i_takui_taku
提出日時 2024-07-19 21:26:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 162,488 KB
最終ジャッジ日時 2024-07-19 21:26:57
合計ジャッジ時間 7,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 154 ms
131,196 KB
testcase_06 AC 188 ms
162,056 KB
testcase_07 AC 151 ms
131,072 KB
testcase_08 AC 196 ms
162,488 KB
testcase_09 AC 170 ms
147,316 KB
testcase_10 AC 178 ms
156,696 KB
testcase_11 WA -
testcase_12 AC 145 ms
132,996 KB
testcase_13 AC 139 ms
130,780 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 145 ms
131,288 KB
testcase_18 WA -
testcase_19 AC 165 ms
147,456 KB
testcase_20 WA -
testcase_21 AC 144 ms
130,904 KB
testcase_22 AC 146 ms
131,412 KB
testcase_23 AC 149 ms
132,116 KB
testcase_24 AC 145 ms
112,704 KB
testcase_25 AC 67 ms
80,256 KB
testcase_26 WA -
testcase_27 AC 151 ms
114,600 KB
testcase_28 AC 62 ms
73,216 KB
testcase_29 AC 102 ms
99,976 KB
testcase_30 AC 96 ms
97,832 KB
testcase_31 WA -
testcase_32 AC 51 ms
70,016 KB
testcase_33 WA -
testcase_34 AC 103 ms
108,828 KB
testcase_35 AC 74 ms
87,168 KB
testcase_36 AC 115 ms
101,620 KB
testcase_37 AC 88 ms
94,336 KB
testcase_38 WA -
testcase_39 AC 85 ms
96,384 KB
testcase_40 AC 111 ms
106,880 KB
testcase_41 AC 103 ms
98,048 KB
testcase_42 AC 78 ms
91,648 KB
testcase_43 AC 88 ms
97,792 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) and any(s & 1 for s in S):
    print('No')
    exit()
print('Yes')
0