結果
問題 | No.1544 [Cherry 2nd Tune C] Synchroscope |
ユーザー | kozy |
提出日時 | 2021-06-11 21:25:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 740 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 16,896 KB |
最終ジャッジ日時 | 2024-05-08 16:49:58 |
合計ジャッジ時間 | 26,094 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,512 KB |
testcase_01 | AC | 29 ms
11,136 KB |
testcase_02 | AC | 29 ms
11,008 KB |
testcase_03 | AC | 872 ms
11,264 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 1,305 ms
11,520 KB |
testcase_06 | AC | 1,729 ms
11,392 KB |
testcase_07 | AC | 1,654 ms
11,392 KB |
testcase_08 | AC | 1,075 ms
11,392 KB |
testcase_09 | AC | 144 ms
11,392 KB |
testcase_10 | AC | 1,614 ms
11,520 KB |
testcase_11 | AC | 986 ms
11,264 KB |
testcase_12 | AC | 839 ms
11,136 KB |
testcase_13 | AC | 142 ms
11,264 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 793 ms
11,264 KB |
testcase_17 | AC | 481 ms
11,136 KB |
testcase_18 | AC | 120 ms
11,136 KB |
testcase_19 | AC | 208 ms
11,264 KB |
testcase_20 | TLE | - |
testcase_21 | AC | 429 ms
11,136 KB |
testcase_22 | AC | 160 ms
11,136 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
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)