結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー pluto77pluto77
提出日時 2022-02-11 11:33:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 235 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 405,888 KB
最終ジャッジ日時 2024-06-27 05:32:07
合計ジャッジ時間 13,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,384 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 50 ms
24,832 KB
testcase_04 AC 173 ms
122,240 KB
testcase_05 AC 209 ms
151,800 KB
testcase_06 AC 275 ms
197,996 KB
testcase_07 AC 257 ms
190,980 KB
testcase_08 AC 172 ms
127,056 KB
testcase_09 AC 50 ms
23,552 KB
testcase_10 AC 255 ms
187,056 KB
testcase_11 AC 66 ms
37,600 KB
testcase_12 AC 88 ms
55,808 KB
testcase_13 AC 52 ms
25,236 KB
testcase_14 AC 349 ms
254,480 KB
testcase_15 AC 434 ms
297,728 KB
testcase_16 AC 141 ms
95,744 KB
testcase_17 AC 36 ms
13,568 KB
testcase_18 AC 40 ms
16,640 KB
testcase_19 AC 58 ms
31,608 KB
testcase_20 AC 332 ms
247,124 KB
testcase_21 AC 85 ms
53,716 KB
testcase_22 AC 49 ms
26,112 KB
testcase_23 AC 627 ms
402,048 KB
testcase_24 AC 672 ms
401,920 KB
testcase_25 AC 586 ms
401,920 KB
testcase_26 AC 582 ms
402,016 KB
testcase_27 AC 574 ms
401,892 KB
testcase_28 AC 569 ms
401,920 KB
testcase_29 AC 568 ms
402,016 KB
testcase_30 AC 573 ms
401,920 KB
testcase_31 AC 574 ms
402,048 KB
testcase_32 AC 567 ms
401,964 KB
testcase_33 AC 33 ms
10,880 KB
testcase_34 AC 29 ms
10,880 KB
testcase_35 AC 29 ms
10,752 KB
testcase_36 AC 30 ms
10,880 KB
testcase_37 AC 31 ms
11,008 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1544
import math
n,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
a=a*(m//math.gcd(n,m))
b=b*(n//math.gcd(n,m))
for i in range(len(a)):
 if a[i]==b[i]:
  print(i+1)
  exit()
print(-1)
0