結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー Manuel1024Manuel1024
提出日時 2021-05-19 19:43:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 485 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,472 KB
最終ジャッジ日時 2024-05-08 16:21:26
合計ジャッジ時間 27,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
49,472 KB
testcase_01 AC 503 ms
44,092 KB
testcase_02 AC 553 ms
44,088 KB
testcase_03 AC 509 ms
43,964 KB
testcase_04 AC 513 ms
43,836 KB
testcase_05 AC 510 ms
44,228 KB
testcase_06 AC 512 ms
44,212 KB
testcase_07 AC 512 ms
44,224 KB
testcase_08 AC 512 ms
44,088 KB
testcase_09 AC 506 ms
44,096 KB
testcase_10 AC 506 ms
44,000 KB
testcase_11 AC 507 ms
44,092 KB
testcase_12 AC 509 ms
44,356 KB
testcase_13 AC 504 ms
44,092 KB
testcase_14 AC 510 ms
43,832 KB
testcase_15 AC 513 ms
43,932 KB
testcase_16 AC 516 ms
43,956 KB
testcase_17 AC 519 ms
44,224 KB
testcase_18 AC 590 ms
44,092 KB
testcase_19 AC 515 ms
44,468 KB
testcase_20 AC 511 ms
44,084 KB
testcase_21 AC 511 ms
44,092 KB
testcase_22 AC 498 ms
43,836 KB
testcase_23 AC 514 ms
43,960 KB
testcase_24 AC 504 ms
44,092 KB
testcase_25 AC 509 ms
43,840 KB
testcase_26 AC 509 ms
43,828 KB
testcase_27 AC 517 ms
43,964 KB
testcase_28 AC 509 ms
43,836 KB
testcase_29 AC 515 ms
43,960 KB
testcase_30 AC 515 ms
44,220 KB
testcase_31 AC 508 ms
44,032 KB
testcase_32 AC 501 ms
43,960 KB
testcase_33 AC 514 ms
44,216 KB
testcase_34 AC 499 ms
44,352 KB
testcase_35 AC 491 ms
43,964 KB
testcase_36 AC 509 ms
44,216 KB
testcase_37 AC 501 ms
44,084 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

cnt1 = [0 for i in range(10010)]
isexist = False
for v in a:
    cnt1[v] += 1
for v in b:
    if cnt1[v] > 0:
        isexist = True
        break

if not isexist:
    print(-1)
    exit()

ans = -1
loopnum = max(n, m) if max(n, m) % min(n, m) == 0 else np.lcm(n, m)
for i in range(loopnum):
    if a[i%n] == b[i%m]:
        ans = i+1
        break
print(ans)
0