結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-11 21:32:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,296 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-08 17:01:00
合計ジャッジ時間 5,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,424 KB
testcase_01 AC 44 ms
55,552 KB
testcase_02 AC 46 ms
55,168 KB
testcase_03 AC 78 ms
70,528 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 101 ms
76,984 KB
testcase_07 AC 100 ms
77,568 KB
testcase_08 AC 93 ms
77,440 KB
testcase_09 AC 54 ms
64,384 KB
testcase_10 AC 100 ms
77,248 KB
testcase_11 AC 74 ms
70,140 KB
testcase_12 AC 75 ms
71,040 KB
testcase_13 AC 55 ms
64,000 KB
testcase_14 AC 104 ms
77,056 KB
testcase_15 AC 110 ms
77,440 KB
testcase_16 AC 70 ms
68,736 KB
testcase_17 AC 68 ms
68,480 KB
testcase_18 AC 54 ms
63,360 KB
testcase_19 AC 54 ms
63,744 KB
testcase_20 AC 104 ms
77,312 KB
testcase_21 AC 66 ms
68,736 KB
testcase_22 AC 55 ms
64,000 KB
testcase_23 AC 105 ms
75,360 KB
testcase_24 AC 115 ms
74,740 KB
testcase_25 AC 112 ms
77,312 KB
testcase_26 AC 115 ms
77,564 KB
testcase_27 AC 105 ms
75,392 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 105 ms
75,264 KB
testcase_31 AC 106 ms
75,648 KB
testcase_32 AC 106 ms
75,204 KB
testcase_33 AC 74 ms
77,056 KB
testcase_34 AC 46 ms
54,912 KB
testcase_35 AC 46 ms
55,296 KB
testcase_36 AC 52 ms
63,744 KB
testcase_37 AC 49 ms
63,232 KB
testcase_38 AC 96 ms
64,768 KB
testcase_39 AC 95 ms
65,024 KB
testcase_40 AC 97 ms
65,536 KB
testcase_41 AC 96 ms
65,024 KB
testcase_42 AC 96 ms
65,024 KB
testcase_43 AC 94 ms
64,768 KB
testcase_44 AC 95 ms
65,016 KB
testcase_45 AC 96 ms
64,896 KB
testcase_46 AC 94 ms
65,280 KB
testcase_47 AC 94 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    if b == 0:
        return 1, 0, a
    q, r = divmod(a, b)
    x, y, d = extgcd(b, r)
    s, t = y, x-q*y
    return s, t, d

def MOD(a, m):
    return (a%m + m)%m;

def CRT_list(b, m):
    # b: list
    # m: list
    # x ≡ bi (mod mi)を満たすx ≡ r (mod lcm(m1*m2..*mn))について
    # r, lcm(m1*m2..*mn)をreturn
    # 解無しの場合は0, -1をreturn
    r, M = 0, 1
    for i in range(len(b)):
        p, q, d = extgcd(M, m[i])
        if (b[i]-r)%d != 0:
            return 0, -1
        temp = (b[i]-r)//d * p % (m[i]//d)
        r += M * temp
        M *= m[i]//d
    return MOD(r, M), M

import math
from functools import reduce
def lcm_base(x, y):
  return (x * y) // math.gcd(x, y)

def lcm_list(numbers):
  return reduce(lcm_base, numbers, 1)

n, m = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

res = float('inf')
P = []
for i, a in enumerate(A):
    for j, b in enumerate(B):
        if a == b:
            if i == j:
                res = min(res, i)
            else:
                P.append((i, j))
            break

for p in P:
    r, M = CRT_list(p, [n, m])
    if M == -1:
        continue
    else:
        res = min(r, res)
if res != float('inf'):
    print(res+1)
else:
    print(-1)
0