結果

問題 No.2811 Calculation Within Sequence
ユーザー miho-4miho-4
提出日時 2024-07-19 21:35:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 142,188 KB
最終ジャッジ日時 2024-07-19 21:35:25
合計ジャッジ時間 8,527 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 176 ms
141,920 KB
testcase_04 AC 162 ms
139,024 KB
testcase_05 AC 180 ms
141,992 KB
testcase_06 AC 193 ms
142,112 KB
testcase_07 AC 185 ms
141,868 KB
testcase_08 AC 213 ms
142,116 KB
testcase_09 AC 214 ms
142,116 KB
testcase_10 AC 187 ms
141,992 KB
testcase_11 AC 177 ms
142,120 KB
testcase_12 AC 175 ms
141,868 KB
testcase_13 AC 175 ms
141,956 KB
testcase_14 AC 165 ms
138,844 KB
testcase_15 AC 209 ms
141,720 KB
testcase_16 AC 171 ms
142,064 KB
testcase_17 AC 153 ms
139,452 KB
testcase_18 AC 181 ms
142,132 KB
testcase_19 AC 178 ms
142,188 KB
testcase_20 AC 159 ms
139,156 KB
testcase_21 AC 165 ms
139,512 KB
testcase_22 AC 157 ms
139,372 KB
testcase_23 AC 166 ms
140,028 KB
testcase_24 AC 141 ms
109,152 KB
testcase_25 AC 68 ms
84,224 KB
testcase_26 AC 71 ms
85,760 KB
testcase_27 AC 132 ms
100,552 KB
testcase_28 AC 60 ms
69,632 KB
testcase_29 AC 108 ms
99,968 KB
testcase_30 AC 125 ms
102,364 KB
testcase_31 AC 141 ms
105,728 KB
testcase_32 AC 60 ms
74,880 KB
testcase_33 AC 111 ms
101,012 KB
testcase_34 AC 122 ms
106,856 KB
testcase_35 AC 77 ms
91,652 KB
testcase_36 AC 111 ms
99,072 KB
testcase_37 AC 87 ms
98,432 KB
testcase_38 AC 95 ms
104,764 KB
testcase_39 AC 99 ms
101,196 KB
testcase_40 AC 122 ms
108,928 KB
testcase_41 AC 116 ms
99,112 KB
testcase_42 AC 77 ms
92,672 KB
testcase_43 AC 98 ms
102,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n,m=map(int,input().split())
T=list(map(int,input().split()))+[0]*max(0,m-n)
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