結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー wesoweeenwesoweeen
提出日時 2021-06-24 23:08:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,889 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 401,920 KB
最終ジャッジ日時 2024-06-25 07:35:35
合計ジャッジ時間 25,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 92 ms
105,796 KB
testcase_04 AC 184 ms
233,312 KB
testcase_05 AC 133 ms
151,684 KB
testcase_06 AC 152 ms
197,888 KB
testcase_07 AC 145 ms
190,848 KB
testcase_08 AC 99 ms
126,772 KB
testcase_09 AC 42 ms
23,580 KB
testcase_10 AC 145 ms
186,840 KB
testcase_11 AC 98 ms
116,544 KB
testcase_12 AC 89 ms
100,516 KB
testcase_13 AC 42 ms
25,216 KB
testcase_14 AC 189 ms
254,532 KB
testcase_15 AC 217 ms
297,856 KB
testcase_16 AC 87 ms
96,000 KB
testcase_17 AC 63 ms
61,432 KB
testcase_18 AC 41 ms
22,016 KB
testcase_19 AC 46 ms
31,488 KB
testcase_20 AC 181 ms
247,128 KB
testcase_21 AC 58 ms
53,608 KB
testcase_22 AC 44 ms
26,112 KB
testcase_23 AC 295 ms
401,920 KB
testcase_24 AC 283 ms
401,880 KB
testcase_25 AC 284 ms
401,812 KB
testcase_26 AC 288 ms
401,908 KB
testcase_27 AC 284 ms
401,920 KB
testcase_28 AC 283 ms
401,920 KB
testcase_29 AC 280 ms
401,920 KB
testcase_30 AC 282 ms
401,920 KB
testcase_31 AC 289 ms
401,896 KB
testcase_32 AC 290 ms
401,920 KB
testcase_33 AC 1,603 ms
401,408 KB
testcase_34 AC 29 ms
10,880 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 32 ms
10,752 KB
testcase_37 AC 31 ms
10,880 KB
testcase_38 AC 1,676 ms
400,452 KB
testcase_39 AC 1,889 ms
400,952 KB
testcase_40 AC 1,834 ms
400,084 KB
testcase_41 AC 1,787 ms
401,016 KB
testcase_42 AC 1,655 ms
393,684 KB
testcase_43 AC 1,624 ms
377,996 KB
testcase_44 AC 1,634 ms
382,208 KB
testcase_45 AC 1,776 ms
395,152 KB
testcase_46 AC 1,650 ms
385,160 KB
testcase_47 AC 1,679 ms
389,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    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
    else:
        print(-1)

if __name__ == '__main__':
    main()
0