結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー sangonanasangonana
提出日時 2021-06-11 21:37:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-05-08 17:08:18
合計ジャッジ時間 6,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 91 ms
67,840 KB
testcase_06 AC 99 ms
68,224 KB
testcase_07 AC 98 ms
68,224 KB
testcase_08 AC 83 ms
67,840 KB
testcase_09 AC 52 ms
62,336 KB
testcase_10 AC 96 ms
68,224 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 53 ms
61,952 KB
testcase_14 AC 115 ms
70,400 KB
testcase_15 AC 123 ms
69,888 KB
testcase_16 AC 75 ms
66,304 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 53 ms
61,696 KB
testcase_20 AC 110 ms
69,248 KB
testcase_21 AC 64 ms
65,152 KB
testcase_22 AC 51 ms
61,696 KB
testcase_23 AC 142 ms
70,656 KB
testcase_24 AC 145 ms
70,528 KB
testcase_25 AC 143 ms
70,528 KB
testcase_26 AC 145 ms
70,912 KB
testcase_27 AC 144 ms
71,296 KB
testcase_28 AC 145 ms
70,912 KB
testcase_29 AC 142 ms
69,888 KB
testcase_30 AC 143 ms
69,888 KB
testcase_31 AC 145 ms
70,784 KB
testcase_32 AC 144 ms
71,040 KB
testcase_33 WA -
testcase_34 AC 40 ms
52,224 KB
testcase_35 AC 39 ms
52,224 KB
testcase_36 AC 47 ms
61,184 KB
testcase_37 AC 45 ms
60,288 KB
testcase_38 AC 132 ms
62,592 KB
testcase_39 AC 133 ms
62,336 KB
testcase_40 AC 132 ms
62,080 KB
testcase_41 AC 133 ms
62,848 KB
testcase_42 AC 131 ms
62,080 KB
testcase_43 AC 130 ms
62,976 KB
testcase_44 AC 132 ms
63,488 KB
testcase_45 AC 134 ms
63,488 KB
testcase_46 AC 128 ms
63,232 KB
testcase_47 AC 131 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
def crt(R,M):
	def ex_gcd(a,b,c):
		GCD=gcd(a,b)
		if GCD>1:
			if c%GCD!=0:
				return -1
			else:
				a//=GCD
				b//=GCD
				c//=GCD
		x1,y1,m=1,0,a
		x2,y2,n=0,1,b
		while m%n!=0:
			q=m//n
			x1,y1,m,x2,y2,n=\
			x2,y2,n,x1-q*x2,y1-q*y2,m-q*n
		return (x2*c,y2*c)

	N=len(M)
	for i in range(N-1):
		D=gcd(M[i],M[i+1])
		if (R[i+1]-R[i])%D!=0:
			return 0
		P,Q=ex_gcd(M[i],M[i+1],D)
		ret=R[i]+M[i]*((R[i+1]-R[i])//D)*P
		ret%=M[i]*M[i+1]//D
		if i!=N-2:
			R[i+1]=ret
			M[i+1]=M[i]*M[i+1]//D
	return ret

n,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
inf=10**18
ans=inf
for i in range(n):
	for j in range(m):
		if a[i]==b[j]:
			ret=crt([i,j],[n,m])
			ans=min(ans,ret+1)

if ans==inf:
	ans=-1

print(ans)
0