結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 174 ms
141,856 KB
testcase_04 AC 167 ms
139,404 KB
testcase_05 AC 174 ms
141,856 KB
testcase_06 AC 186 ms
141,992 KB
testcase_07 AC 171 ms
141,984 KB
testcase_08 AC 181 ms
142,240 KB
testcase_09 AC 183 ms
141,984 KB
testcase_10 AC 184 ms
141,936 KB
testcase_11 AC 175 ms
142,248 KB
testcase_12 AC 170 ms
141,852 KB
testcase_13 AC 166 ms
142,200 KB
testcase_14 AC 160 ms
139,024 KB
testcase_15 AC 178 ms
142,112 KB
testcase_16 AC 179 ms
142,076 KB
testcase_17 AC 163 ms
139,508 KB
testcase_18 AC 184 ms
142,360 KB
testcase_19 AC 181 ms
142,108 KB
testcase_20 AC 164 ms
139,132 KB
testcase_21 AC 174 ms
139,248 KB
testcase_22 AC 162 ms
139,388 KB
testcase_23 AC 165 ms
139,956 KB
testcase_24 AC 143 ms
109,312 KB
testcase_25 AC 74 ms
84,224 KB
testcase_26 AC 76 ms
84,480 KB
testcase_27 AC 131 ms
100,180 KB
testcase_28 AC 62 ms
69,248 KB
testcase_29 AC 112 ms
99,968 KB
testcase_30 AC 103 ms
98,588 KB
testcase_31 AC 135 ms
105,344 KB
testcase_32 AC 61 ms
74,880 KB
testcase_33 AC 102 ms
99,712 KB
testcase_34 RE -
testcase_35 AC 76 ms
89,216 KB
testcase_36 AC 117 ms
98,816 KB
testcase_37 RE -
testcase_38 AC 93 ms
100,608 KB
testcase_39 AC 99 ms
100,992 KB
testcase_40 AC 119 ms
108,928 KB
testcase_41 AC 114 ms
99,584 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)
if x==0:
  x=1
flag=1
for i in range(m):
  if (S[i]-T[i])%x!=0:
    flag=0
    break
print("Yes" if flag else "No")
0