結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー first_vilfirst_vil
提出日時 2021-06-14 14:00:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 1,785 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 451,072 KB
最終ジャッジ日時 2024-06-06 17:44:43
合計ジャッジ時間 12,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 70 ms
153,984 KB
testcase_04 AC 168 ms
282,752 KB
testcase_05 AC 104 ms
199,784 KB
testcase_06 AC 141 ms
247,036 KB
testcase_07 AC 135 ms
239,360 KB
testcase_08 AC 84 ms
175,104 KB
testcase_09 AC 45 ms
70,920 KB
testcase_10 AC 129 ms
235,136 KB
testcase_11 AC 74 ms
164,864 KB
testcase_12 AC 67 ms
148,608 KB
testcase_13 AC 46 ms
73,088 KB
testcase_14 AC 182 ms
304,000 KB
testcase_15 AC 220 ms
346,972 KB
testcase_16 AC 68 ms
144,128 KB
testcase_17 AC 59 ms
109,440 KB
testcase_18 AC 46 ms
70,016 KB
testcase_19 AC 49 ms
79,212 KB
testcase_20 AC 176 ms
296,236 KB
testcase_21 AC 55 ms
101,504 KB
testcase_22 AC 47 ms
74,112 KB
testcase_23 AC 296 ms
450,944 KB
testcase_24 AC 301 ms
450,944 KB
testcase_25 AC 291 ms
450,288 KB
testcase_26 AC 291 ms
451,072 KB
testcase_27 AC 297 ms
450,944 KB
testcase_28 AC 291 ms
450,560 KB
testcase_29 AC 289 ms
450,816 KB
testcase_30 AC 291 ms
451,072 KB
testcase_31 AC 291 ms
450,688 KB
testcase_32 AC 291 ms
450,560 KB
testcase_33 AC 372 ms
450,944 KB
testcase_34 AC 37 ms
51,584 KB
testcase_35 AC 35 ms
51,840 KB
testcase_36 AC 40 ms
59,136 KB
testcase_37 AC 40 ms
59,136 KB
testcase_38 AC 368 ms
449,024 KB
testcase_39 AC 369 ms
450,048 KB
testcase_40 AC 367 ms
449,152 KB
testcase_41 AC 362 ms
450,176 KB
testcase_42 AC 360 ms
442,880 KB
testcase_43 AC 341 ms
428,032 KB
testcase_44 AC 350 ms
430,720 KB
testcase_45 AC 361 ms
444,288 KB
testcase_46 AC 351 ms
433,920 KB
testcase_47 AC 354 ms
438,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input=sys.stdin.buffer.readline
    n,m=map(int,input().split())
    a=list(map(int,input().split()))*m
    b=list(map(int,input().split()))*n
    for i in range(n*m):
        if a[i]==b[i]:
            print(i+1)
            return
    print(-1)
main()
0