結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー kokonotsukokonotsu
提出日時 2021-07-19 16:52:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 900 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 454,472 KB
最終ジャッジ日時 2024-07-17 13:32:56
合計ジャッジ時間 7,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,012 KB
testcase_01 AC 38 ms
53,028 KB
testcase_02 AC 37 ms
53,108 KB
testcase_03 AC 49 ms
73,996 KB
testcase_04 AC 76 ms
172,996 KB
testcase_05 AC 84 ms
201,756 KB
testcase_06 AC 98 ms
248,844 KB
testcase_07 AC 92 ms
240,104 KB
testcase_08 AC 76 ms
176,732 KB
testcase_09 AC 47 ms
72,688 KB
testcase_10 AC 91 ms
236,128 KB
testcase_11 AC 51 ms
86,180 KB
testcase_12 AC 56 ms
104,996 KB
testcase_13 AC 48 ms
74,360 KB
testcase_14 AC 116 ms
305,792 KB
testcase_15 AC 126 ms
347,724 KB
testcase_16 AC 67 ms
145,416 KB
testcase_17 AC 44 ms
62,388 KB
testcase_18 AC 46 ms
65,816 KB
testcase_19 AC 50 ms
80,476 KB
testcase_20 AC 111 ms
297,764 KB
testcase_21 AC 59 ms
102,632 KB
testcase_22 AC 48 ms
76,036 KB
testcase_23 AC 156 ms
452,940 KB
testcase_24 AC 152 ms
453,668 KB
testcase_25 AC 151 ms
453,284 KB
testcase_26 AC 152 ms
453,216 KB
testcase_27 AC 151 ms
454,280 KB
testcase_28 AC 151 ms
453,176 KB
testcase_29 AC 153 ms
454,472 KB
testcase_30 AC 151 ms
452,924 KB
testcase_31 AC 152 ms
452,688 KB
testcase_32 AC 154 ms
452,952 KB
testcase_33 AC 43 ms
61,200 KB
testcase_34 AC 37 ms
52,216 KB
testcase_35 AC 37 ms
53,284 KB
testcase_36 AC 42 ms
60,056 KB
testcase_37 AC 42 ms
60,972 KB
testcase_38 AC 226 ms
451,000 KB
testcase_39 AC 227 ms
451,680 KB
testcase_40 AC 230 ms
451,648 KB
testcase_41 AC 229 ms
452,436 KB
testcase_42 AC 225 ms
445,928 KB
testcase_43 AC 218 ms
428,412 KB
testcase_44 AC 225 ms
433,060 KB
testcase_45 AC 224 ms
445,836 KB
testcase_46 AC 222 ms
436,412 KB
testcase_47 AC 225 ms
440,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N, M = map(int, input().split())

g = gcd(N, M)
A = list(map(int, input().split()))
B = list(map(int, input().split()))

A = A*(M//g)
B = B*(N//g)

for i in range(len(A)):
    if A[i] == B[i]:
        print(i+1)
        exit(0)

print(-1)
0