結果

問題 No.2811 Calculation Within Sequence
ユーザー miho-4miho-4
提出日時 2024-07-19 21:30:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 254 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 142,360 KB
最終ジャッジ日時 2024-07-19 21:30:42
合計ジャッジ時間 8,194 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,340 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 160 ms
142,108 KB
testcase_04 AC 172 ms
138,964 KB
testcase_05 AC 170 ms
141,972 KB
testcase_06 AC 183 ms
142,100 KB
testcase_07 AC 170 ms
141,860 KB
testcase_08 AC 181 ms
142,360 KB
testcase_09 AC 179 ms
141,720 KB
testcase_10 AC 195 ms
141,804 KB
testcase_11 AC 201 ms
142,236 KB
testcase_12 AC 189 ms
141,976 KB
testcase_13 AC 185 ms
141,888 KB
testcase_14 AC 162 ms
138,880 KB
testcase_15 AC 173 ms
142,224 KB
testcase_16 AC 167 ms
141,976 KB
testcase_17 AC 176 ms
139,316 KB
testcase_18 AC 177 ms
141,852 KB
testcase_19 AC 174 ms
142,240 KB
testcase_20 AC 164 ms
138,988 KB
testcase_21 AC 160 ms
139,700 KB
testcase_22 AC 158 ms
139,564 KB
testcase_23 AC 157 ms
140,212 KB
testcase_24 AC 148 ms
108,928 KB
testcase_25 AC 71 ms
84,096 KB
testcase_26 AC 74 ms
84,096 KB
testcase_27 AC 131 ms
100,036 KB
testcase_28 AC 59 ms
69,376 KB
testcase_29 AC 113 ms
99,712 KB
testcase_30 AC 102 ms
98,600 KB
testcase_31 AC 127 ms
105,472 KB
testcase_32 AC 63 ms
74,880 KB
testcase_33 AC 111 ms
99,712 KB
testcase_34 RE -
testcase_35 AC 83 ms
88,960 KB
testcase_36 AC 122 ms
98,944 KB
testcase_37 RE -
testcase_38 AC 94 ms
100,352 KB
testcase_39 AC 100 ms
101,120 KB
testcase_40 AC 130 ms
108,928 KB
testcase_41 AC 118 ms
99,200 KB
testcase_42 RE -
testcase_43 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n,m=map(int,input().split())
T=list(map(int,input().split()))+[0]*max(0,m-m)
S=list(map(int,input().split()))+[0]*max(0,n-m)

x=math.gcd(*T)
flag=1
for i in range(m):
  if (S[i]-T[i])%x!=0:
    flag=0
    break
print("Yes" if flag else "No")
0