結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー kozykozy
提出日時 2021-06-11 21:25:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 740 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-12-14 22:17:54
合計ジャッジ時間 87,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,828 KB
testcase_01 AC 31 ms
17,700 KB
testcase_02 AC 30 ms
17,824 KB
testcase_03 AC 900 ms
22,784 KB
testcase_04 TLE -
testcase_05 AC 1,374 ms
18,336 KB
testcase_06 AC 1,788 ms
18,340 KB
testcase_07 AC 1,670 ms
18,208 KB
testcase_08 AC 1,112 ms
18,208 KB
testcase_09 AC 146 ms
22,784 KB
testcase_10 AC 1,639 ms
18,336 KB
testcase_11 AC 981 ms
22,784 KB
testcase_12 AC 865 ms
18,084 KB
testcase_13 AC 143 ms
22,528 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 804 ms
18,212 KB
testcase_17 AC 515 ms
22,400 KB
testcase_18 AC 122 ms
17,952 KB
testcase_19 AC 212 ms
22,656 KB
testcase_20 TLE -
testcase_21 AC 431 ms
22,144 KB
testcase_22 AC 159 ms
17,956 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 31 ms
17,956 KB
testcase_35 AC 31 ms
22,528 KB
testcase_36 AC 33 ms
17,824 KB
testcase_37 AC 32 ms
22,400 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
INF=float('inf')
def lcm(a,b):
  return a*b//math.gcd(a,b)
def two_crt(mod1,mod2,i,j):
  g=math.gcd(mod1,mod2)
  if i%g!=j%g:
    return INF
  else:
    INV=pow(mod1//g,-1,mod2//g)
    return (i+(((j-i)//g)*mod1*INV))%lcm(mod1,mod2)
def crt(L):
  thismod=L[0][0]
  thisnum=L[0][1]
  for i in range(1,len(L)):
    thisnum=two_crt(thismod,L[i][0],thisnum,L[i][1])
    thismod=lcm(thismod,L[i][0])
  return thisnum,thismod

N,M=map(int,input().split())
L=list(map(int,input().split()))
R=list(map(int,input().split()))
ans=10**10
for i in range(N):
  for j in range(M):
    if L[i]==R[j]:
      a=two_crt(N,M,i,j)
      if a==INF:
        continue
      else:
        ans=min(ans,a)
if ans==10**10:
  print(-1)
else:
  print(ans+1)
0