結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2021-06-26 13:21:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 64,184 KB
最終ジャッジ日時 2024-06-25 09:04:11
合計ジャッジ時間 5,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,144 KB
testcase_01 AC 37 ms
51,876 KB
testcase_02 AC 38 ms
52,116 KB
testcase_03 AC 42 ms
60,860 KB
testcase_04 AC 44 ms
61,388 KB
testcase_05 AC 44 ms
61,136 KB
testcase_06 AC 43 ms
62,388 KB
testcase_07 AC 44 ms
61,900 KB
testcase_08 AC 44 ms
61,352 KB
testcase_09 AC 44 ms
60,536 KB
testcase_10 AC 44 ms
61,824 KB
testcase_11 AC 44 ms
61,224 KB
testcase_12 AC 43 ms
61,404 KB
testcase_13 AC 44 ms
60,736 KB
testcase_14 AC 43 ms
61,644 KB
testcase_15 AC 44 ms
63,208 KB
testcase_16 AC 44 ms
60,856 KB
testcase_17 AC 44 ms
61,004 KB
testcase_18 AC 42 ms
59,484 KB
testcase_19 AC 44 ms
60,088 KB
testcase_20 AC 45 ms
62,088 KB
testcase_21 AC 44 ms
61,264 KB
testcase_22 AC 42 ms
60,068 KB
testcase_23 AC 44 ms
63,156 KB
testcase_24 AC 44 ms
62,584 KB
testcase_25 AC 44 ms
63,060 KB
testcase_26 AC 44 ms
62,204 KB
testcase_27 AC 44 ms
64,184 KB
testcase_28 AC 44 ms
62,700 KB
testcase_29 AC 44 ms
62,412 KB
testcase_30 AC 44 ms
63,756 KB
testcase_31 AC 44 ms
63,032 KB
testcase_32 AC 44 ms
62,488 KB
testcase_33 AC 146 ms
61,044 KB
testcase_34 AC 38 ms
52,508 KB
testcase_35 AC 39 ms
52,084 KB
testcase_36 AC 43 ms
60,388 KB
testcase_37 AC 42 ms
58,820 KB
testcase_38 AC 143 ms
63,284 KB
testcase_39 AC 143 ms
63,304 KB
testcase_40 AC 142 ms
62,848 KB
testcase_41 AC 141 ms
63,572 KB
testcase_42 AC 139 ms
62,160 KB
testcase_43 AC 136 ms
62,692 KB
testcase_44 AC 138 ms
63,528 KB
testcase_45 AC 151 ms
62,220 KB
testcase_46 AC 137 ms
62,220 KB
testcase_47 AC 140 ms
62,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if (set(A) & set(B)) != set():
  for i in range(N * M):
    if A[i % N] == B[i % M]:
      print(i + 1)
      exit()

print(-1)
0