結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー roarisroaris
提出日時 2021-06-11 23:14:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 974 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-05-08 19:36:23
合計ジャッジ時間 8,910 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 90 ms
69,760 KB
testcase_04 AC 126 ms
73,472 KB
testcase_05 AC 110 ms
72,832 KB
testcase_06 AC 119 ms
73,600 KB
testcase_07 AC 118 ms
73,088 KB
testcase_08 AC 109 ms
73,984 KB
testcase_09 AC 58 ms
62,080 KB
testcase_10 AC 113 ms
73,088 KB
testcase_11 AC 87 ms
67,200 KB
testcase_12 AC 83 ms
67,072 KB
testcase_13 AC 53 ms
62,080 KB
testcase_14 AC 149 ms
76,800 KB
testcase_15 AC 151 ms
76,672 KB
testcase_16 AC 85 ms
66,944 KB
testcase_17 AC 78 ms
67,328 KB
testcase_18 AC 55 ms
61,824 KB
testcase_19 AC 57 ms
62,336 KB
testcase_20 AC 126 ms
71,808 KB
testcase_21 AC 75 ms
66,688 KB
testcase_22 AC 55 ms
62,464 KB
testcase_23 AC 153 ms
70,528 KB
testcase_24 AC 154 ms
70,400 KB
testcase_25 AC 156 ms
70,528 KB
testcase_26 AC 154 ms
71,296 KB
testcase_27 AC 152 ms
71,040 KB
testcase_28 AC 152 ms
71,424 KB
testcase_29 AC 153 ms
70,272 KB
testcase_30 AC 151 ms
69,760 KB
testcase_31 AC 154 ms
70,784 KB
testcase_32 AC 154 ms
70,912 KB
testcase_33 TLE -
testcase_34 AC 41 ms
51,840 KB
testcase_35 AC 41 ms
52,096 KB
testcase_36 AC 49 ms
60,672 KB
testcase_37 AC 48 ms
59,904 KB
testcase_38 AC 132 ms
62,464 KB
testcase_39 AC 135 ms
61,824 KB
testcase_40 AC 135 ms
61,952 KB
testcase_41 AC 132 ms
62,592 KB
testcase_42 AC 135 ms
62,080 KB
testcase_43 AC 134 ms
62,848 KB
testcase_44 AC 135 ms
63,104 KB
testcase_45 AC 136 ms
62,720 KB
testcase_46 AC 133 ms
63,360 KB
testcase_47 AC 132 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd
 
def extGCD(a, b): #ax+by=gcd(a,b)となる(x,y)を1つ求める
    if b==0:
        return 1, 0
    
    s, t = extGCD(b, a%b)
    return t, s-a//b*t
 
def crt(rs, ms): #x≡rs[0](mod ms[0]),...となるxについてx≡r(mod lcm(ms))となるrを求める
    r, m = 0, 1
    
    for i in range(len(rs)):
        p, q = extGCD(m, ms[i])
        g = gcd(m, ms[i])
        
        if (rs[i]-r)%g!=0:
            return -1
        
        t = (rs[i]-r)//g*p%(ms[i]//g)
        r += m*t
        m *= ms[i]//g
    
    return r%m

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ans = -1

for i in range(N):
    for j in range(M):
        if A[i]==B[j]:
            k = crt([i, j], [N, M])
            
            if k!=-1:
                if ans==-1:
                    ans = k+1
                else:
                    ans = min(ans, k+1)

print(ans)
0