結果
問題 | No.1544 [Cherry 2nd Tune C] Synchroscope |
ユーザー | brthyyjp |
提出日時 | 2021-06-11 22:04:37 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,751 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 272,504 KB |
最終ジャッジ日時 | 2024-05-08 17:49:58 |
合計ジャッジ時間 | 6,980 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
60,800 KB |
testcase_01 | AC | 51 ms
55,424 KB |
testcase_02 | AC | 47 ms
55,400 KB |
testcase_03 | AC | 79 ms
73,344 KB |
testcase_04 | AC | 90 ms
78,080 KB |
testcase_05 | AC | 91 ms
77,884 KB |
testcase_06 | AC | 101 ms
77,824 KB |
testcase_07 | AC | 104 ms
77,824 KB |
testcase_08 | AC | 94 ms
77,824 KB |
testcase_09 | AC | 59 ms
65,796 KB |
testcase_10 | AC | 108 ms
78,308 KB |
testcase_11 | AC | 78 ms
72,960 KB |
testcase_12 | AC | 79 ms
72,704 KB |
testcase_13 | AC | 57 ms
65,152 KB |
testcase_14 | AC | 102 ms
78,336 KB |
testcase_15 | AC | 102 ms
78,336 KB |
testcase_16 | AC | 82 ms
71,424 KB |
testcase_17 | AC | 73 ms
70,528 KB |
testcase_18 | AC | 57 ms
64,128 KB |
testcase_19 | AC | 59 ms
65,280 KB |
testcase_20 | AC | 97 ms
77,952 KB |
testcase_21 | AC | 73 ms
69,376 KB |
testcase_22 | AC | 60 ms
64,896 KB |
testcase_23 | AC | 84 ms
78,108 KB |
testcase_24 | AC | 84 ms
77,568 KB |
testcase_25 | AC | 86 ms
78,020 KB |
testcase_26 | AC | 94 ms
78,080 KB |
testcase_27 | AC | 88 ms
78,080 KB |
testcase_28 | AC | 86 ms
77,696 KB |
testcase_29 | AC | 88 ms
78,192 KB |
testcase_30 | AC | 86 ms
77,796 KB |
testcase_31 | AC | 91 ms
78,208 KB |
testcase_32 | AC | 88 ms
77,824 KB |
testcase_33 | TLE | - |
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 | -- | - |
ソースコード
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) import sys import io, os #input = sys.stdin.buffer.readline input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline n, m = map(int, input().split()) A = list(map(int, input().split())) B = list(map(int, input().split())) N = 5000 INF = 10**18 res = INF P = [] from collections import defaultdict D = defaultdict(lambda: []) for j, b in enumerate(B): D[b].append(j) for i, a in enumerate(A): for j in D[a]: if i == j: if i <= res: res = i break else: P.append(5000*i+j) m = [n, m] for x in P: i, j = divmod(x, 5000) b = [i, j] r, M = 0, 1 for i in range(len(b)): p, q, d = extgcd(M, m[i]) if (b[i]-r)%d != 0: r, M = 0, -1 break temp = (b[i]-r)//d * p % (m[i]//d) r += M * temp M *= m[i]//d if M != -1: if r <= res: res = r if res != INF: print(res+1) else: print(-1)