結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー googol_S0googol_S0
提出日時 2021-06-11 21:21:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 454,088 KB
最終ジャッジ日時 2024-05-08 16:39:15
合計ジャッジ時間 13,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,224 KB
testcase_01 AC 41 ms
52,284 KB
testcase_02 AC 41 ms
52,564 KB
testcase_03 AC 111 ms
155,616 KB
testcase_04 AC 212 ms
285,432 KB
testcase_05 AC 142 ms
202,500 KB
testcase_06 AC 177 ms
248,804 KB
testcase_07 AC 167 ms
241,896 KB
testcase_08 AC 123 ms
176,980 KB
testcase_09 AC 55 ms
74,056 KB
testcase_10 AC 162 ms
236,664 KB
testcase_11 AC 117 ms
166,396 KB
testcase_12 AC 106 ms
151,276 KB
testcase_13 AC 56 ms
75,168 KB
testcase_14 AC 236 ms
306,672 KB
testcase_15 AC 287 ms
348,436 KB
testcase_16 AC 104 ms
146,256 KB
testcase_17 AC 80 ms
110,984 KB
testcase_18 AC 54 ms
71,596 KB
testcase_19 AC 61 ms
81,540 KB
testcase_20 AC 226 ms
298,128 KB
testcase_21 AC 76 ms
104,020 KB
testcase_22 AC 57 ms
76,452 KB
testcase_23 AC 406 ms
452,556 KB
testcase_24 AC 404 ms
453,520 KB
testcase_25 AC 404 ms
453,488 KB
testcase_26 AC 405 ms
452,760 KB
testcase_27 AC 404 ms
453,500 KB
testcase_28 AC 400 ms
453,924 KB
testcase_29 AC 395 ms
453,000 KB
testcase_30 AC 402 ms
452,340 KB
testcase_31 AC 401 ms
452,808 KB
testcase_32 AC 400 ms
454,088 KB
testcase_33 AC 482 ms
452,680 KB
testcase_34 AC 36 ms
52,820 KB
testcase_35 AC 37 ms
52,816 KB
testcase_36 AC 43 ms
61,316 KB
testcase_37 AC 44 ms
60,992 KB
testcase_38 AC 483 ms
451,932 KB
testcase_39 AC 486 ms
452,104 KB
testcase_40 AC 487 ms
451,304 KB
testcase_41 AC 485 ms
451,924 KB
testcase_42 AC 480 ms
445,272 KB
testcase_43 AC 453 ms
429,400 KB
testcase_44 AC 460 ms
434,224 KB
testcase_45 AC 480 ms
446,936 KB
testcase_46 AC 467 ms
437,336 KB
testcase_47 AC 469 ms
441,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
L=N*M
X=[A[i%N] for i in range(L)]
Y=[B[i%M] for i in range(L)]
for i in range(L):
  if X[i]==Y[i]:
    print(i+1)
    exit()
print(-1)
0