結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー 👑 rin204rin204
提出日時 2022-03-12 22:57:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 452,808 KB
最終ジャッジ日時 2024-09-17 07:22:49
合計ジャッジ時間 8,254 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,728 KB
testcase_01 AC 36 ms
53,692 KB
testcase_02 AC 36 ms
51,952 KB
testcase_03 AC 68 ms
154,852 KB
testcase_04 AC 107 ms
283,748 KB
testcase_05 AC 78 ms
201,204 KB
testcase_06 AC 97 ms
248,392 KB
testcase_07 AC 90 ms
239,888 KB
testcase_08 AC 74 ms
176,304 KB
testcase_09 AC 46 ms
73,228 KB
testcase_10 AC 88 ms
235,612 KB
testcase_11 AC 69 ms
165,228 KB
testcase_12 AC 65 ms
150,364 KB
testcase_13 AC 47 ms
74,124 KB
testcase_14 AC 111 ms
304,836 KB
testcase_15 AC 134 ms
348,060 KB
testcase_16 AC 64 ms
144,792 KB
testcase_17 AC 58 ms
110,880 KB
testcase_18 AC 46 ms
71,228 KB
testcase_19 AC 50 ms
81,356 KB
testcase_20 AC 111 ms
298,032 KB
testcase_21 AC 54 ms
102,364 KB
testcase_22 AC 47 ms
74,440 KB
testcase_23 AC 205 ms
452,172 KB
testcase_24 AC 202 ms
451,980 KB
testcase_25 AC 191 ms
452,740 KB
testcase_26 AC 192 ms
451,432 KB
testcase_27 AC 192 ms
451,240 KB
testcase_28 AC 225 ms
452,340 KB
testcase_29 AC 152 ms
451,172 KB
testcase_30 AC 152 ms
451,040 KB
testcase_31 AC 151 ms
451,448 KB
testcase_32 AC 152 ms
452,808 KB
testcase_33 AC 238 ms
452,440 KB
testcase_34 AC 36 ms
53,220 KB
testcase_35 AC 37 ms
53,032 KB
testcase_36 AC 41 ms
60,472 KB
testcase_37 AC 41 ms
59,892 KB
testcase_38 AC 238 ms
450,164 KB
testcase_39 AC 240 ms
450,276 KB
testcase_40 AC 238 ms
449,952 KB
testcase_41 AC 240 ms
450,688 KB
testcase_42 AC 235 ms
444,520 KB
testcase_43 AC 224 ms
428,452 KB
testcase_44 AC 231 ms
432,304 KB
testcase_45 AC 238 ms
445,272 KB
testcase_46 AC 229 ms
435,084 KB
testcase_47 AC 233 ms
439,864 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