結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー 👑 rin204rin204
提出日時 2021-08-05 13:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 451,072 KB
最終ジャッジ日時 2024-09-16 15:20:21
合計ジャッジ時間 13,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 39 ms
51,328 KB
testcase_03 AC 121 ms
153,856 KB
testcase_04 AC 209 ms
283,008 KB
testcase_05 AC 146 ms
199,680 KB
testcase_06 AC 184 ms
247,040 KB
testcase_07 AC 178 ms
239,360 KB
testcase_08 AC 137 ms
175,232 KB
testcase_09 AC 52 ms
71,808 KB
testcase_10 AC 165 ms
235,136 KB
testcase_11 AC 118 ms
164,736 KB
testcase_12 AC 108 ms
148,608 KB
testcase_13 AC 54 ms
73,344 KB
testcase_14 AC 227 ms
304,000 KB
testcase_15 AC 255 ms
347,392 KB
testcase_16 AC 114 ms
143,872 KB
testcase_17 AC 80 ms
109,056 KB
testcase_18 AC 52 ms
69,248 KB
testcase_19 AC 57 ms
79,360 KB
testcase_20 AC 215 ms
296,576 KB
testcase_21 AC 75 ms
101,632 KB
testcase_22 AC 57 ms
73,984 KB
testcase_23 AC 336 ms
450,816 KB
testcase_24 AC 332 ms
450,816 KB
testcase_25 AC 330 ms
450,816 KB
testcase_26 AC 328 ms
451,072 KB
testcase_27 AC 328 ms
451,072 KB
testcase_28 AC 330 ms
451,072 KB
testcase_29 AC 324 ms
451,072 KB
testcase_30 AC 324 ms
450,560 KB
testcase_31 AC 333 ms
451,072 KB
testcase_32 AC 322 ms
450,432 KB
testcase_33 AC 404 ms
450,816 KB
testcase_34 AC 40 ms
51,456 KB
testcase_35 AC 38 ms
51,328 KB
testcase_36 AC 45 ms
59,008 KB
testcase_37 AC 45 ms
58,752 KB
testcase_38 AC 406 ms
449,280 KB
testcase_39 AC 404 ms
449,792 KB
testcase_40 AC 415 ms
449,280 KB
testcase_41 AC 404 ms
450,048 KB
testcase_42 AC 409 ms
442,880 KB
testcase_43 AC 393 ms
428,160 KB
testcase_44 AC 400 ms
430,976 KB
testcase_45 AC 403 ms
444,032 KB
testcase_46 AC 398 ms
434,176 KB
testcase_47 AC 397 ms
438,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
alst = list(map(int, input().split())) * m
blst = list(map(int, input().split())) * n
for i in range(n * m):
    if alst[i] == blst[i]:
        print(i + 1)
        exit()
print(-1)
0