結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー 👑 rin204rin204
提出日時 2022-03-12 23:00:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 63,192 KB
最終ジャッジ日時 2024-09-17 07:26:39
合計ジャッジ時間 4,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,728 KB
testcase_01 AC 38 ms
52,320 KB
testcase_02 AC 35 ms
53,052 KB
testcase_03 AC 40 ms
61,136 KB
testcase_04 AC 39 ms
60,696 KB
testcase_05 AC 41 ms
61,212 KB
testcase_06 AC 40 ms
61,852 KB
testcase_07 AC 41 ms
61,272 KB
testcase_08 AC 40 ms
60,712 KB
testcase_09 AC 40 ms
61,184 KB
testcase_10 AC 40 ms
60,476 KB
testcase_11 AC 40 ms
60,676 KB
testcase_12 AC 41 ms
60,708 KB
testcase_13 AC 39 ms
60,296 KB
testcase_14 AC 40 ms
61,740 KB
testcase_15 AC 39 ms
62,180 KB
testcase_16 AC 39 ms
60,512 KB
testcase_17 AC 40 ms
59,872 KB
testcase_18 AC 39 ms
60,412 KB
testcase_19 AC 41 ms
61,200 KB
testcase_20 AC 43 ms
61,792 KB
testcase_21 AC 40 ms
61,288 KB
testcase_22 AC 38 ms
60,264 KB
testcase_23 AC 40 ms
62,396 KB
testcase_24 AC 39 ms
61,356 KB
testcase_25 AC 39 ms
61,624 KB
testcase_26 AC 40 ms
61,532 KB
testcase_27 AC 41 ms
61,264 KB
testcase_28 AC 41 ms
62,348 KB
testcase_29 AC 40 ms
61,136 KB
testcase_30 AC 41 ms
61,448 KB
testcase_31 AC 42 ms
62,028 KB
testcase_32 AC 42 ms
61,212 KB
testcase_33 AC 40 ms
61,692 KB
testcase_34 AC 34 ms
52,864 KB
testcase_35 AC 36 ms
53,220 KB
testcase_36 AC 42 ms
61,000 KB
testcase_37 AC 43 ms
61,444 KB
testcase_38 AC 184 ms
62,268 KB
testcase_39 AC 173 ms
62,136 KB
testcase_40 AC 173 ms
62,580 KB
testcase_41 AC 177 ms
62,716 KB
testcase_42 AC 172 ms
62,192 KB
testcase_43 AC 162 ms
62,460 KB
testcase_44 AC 167 ms
62,368 KB
testcase_45 AC 166 ms
62,816 KB
testcase_46 AC 161 ms
63,192 KB
testcase_47 AC 166 ms
62,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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

i = j = 0
x = 1
ans = -1
for _ in range(n * m // gcd(n, m)):
    if A[i] == B[j]:
        ans = x
        break
    x += 1
    i += 1
    j += 1
    if i == n:
        i = 0
    if j == m:
        j = 0
    
print(ans)
0