結果

問題 No.2811 Calculation Within Sequence
ユーザー timitimi
提出日時 2024-07-19 21:35:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 169,708 KB
最終ジャッジ日時 2024-07-19 21:35:48
合計ジャッジ時間 9,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 204 ms
135,424 KB
testcase_04 AC 197 ms
135,820 KB
testcase_05 AC 188 ms
135,252 KB
testcase_06 AC 264 ms
169,708 KB
testcase_07 AC 208 ms
136,148 KB
testcase_08 AC 236 ms
168,324 KB
testcase_09 AC 235 ms
153,608 KB
testcase_10 AC 245 ms
163,592 KB
testcase_11 AC 211 ms
136,000 KB
testcase_12 AC 196 ms
137,176 KB
testcase_13 AC 182 ms
135,688 KB
testcase_14 AC 195 ms
135,752 KB
testcase_15 AC 217 ms
137,096 KB
testcase_16 AC 201 ms
136,200 KB
testcase_17 AC 148 ms
132,544 KB
testcase_18 AC 296 ms
167,428 KB
testcase_19 AC 246 ms
153,540 KB
testcase_20 AC 195 ms
134,796 KB
testcase_21 AC 152 ms
133,584 KB
testcase_22 AC 144 ms
132,360 KB
testcase_23 AC 147 ms
132,792 KB
testcase_24 AC 213 ms
139,960 KB
testcase_25 AC 77 ms
79,872 KB
testcase_26 AC 92 ms
92,032 KB
testcase_27 AC 182 ms
119,924 KB
testcase_28 AC 70 ms
75,520 KB
testcase_29 AC 171 ms
104,352 KB
testcase_30 AC 132 ms
101,744 KB
testcase_31 AC 184 ms
111,580 KB
testcase_32 AC 62 ms
72,192 KB
testcase_33 AC 140 ms
103,684 KB
testcase_34 AC 128 ms
113,160 KB
testcase_35 AC 84 ms
87,808 KB
testcase_36 AC 161 ms
106,624 KB
testcase_37 AC 85 ms
93,620 KB
testcase_38 AC 109 ms
97,024 KB
testcase_39 AC 97 ms
96,720 KB
testcase_40 AC 158 ms
101,360 KB
testcase_41 AC 101 ms
95,856 KB
testcase_42 AC 93 ms
92,032 KB
testcase_43 AC 109 ms
96,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq 
from heapq import heappop,heappush,heapify
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline

a,b=map(int, input().split())
T=list(map(int, input().split()))
S=list(map(int, input().split()))

if sorted(T)==sorted(S):
  print('Yes')
  exit()

import math 
TT=list(set(T))
for i in range(len(TT)):
  if i==0:
    p=T[i]
  else:
    p=math.gcd(p,TT[i]-TT[i-1])
    
if p==1:
  print('Yes')
  exit()

t=T[0]
for s in S:
  q=abs(t-s)
  if q%p!=0:
    print('No')
    exit()
print('Yes')
  
0