結果
問題 | No.1544 [Cherry 2nd Tune C] Synchroscope |
ユーザー | O2MT |
提出日時 | 2021-06-11 23:24:24 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 395 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 69,760 KB |
最終ジャッジ日時 | 2024-05-08 19:46:51 |
合計ジャッジ時間 | 8,038 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
57,088 KB |
testcase_01 | AC | 45 ms
52,096 KB |
testcase_02 | AC | 42 ms
51,584 KB |
testcase_03 | AC | 87 ms
64,512 KB |
testcase_04 | AC | 130 ms
64,768 KB |
testcase_05 | AC | 97 ms
65,536 KB |
testcase_06 | AC | 111 ms
64,000 KB |
testcase_07 | AC | 108 ms
63,360 KB |
testcase_08 | AC | 88 ms
63,360 KB |
testcase_09 | AC | 60 ms
62,976 KB |
testcase_10 | AC | 113 ms
65,152 KB |
testcase_11 | AC | 90 ms
64,384 KB |
testcase_12 | AC | 85 ms
63,488 KB |
testcase_13 | AC | 57 ms
61,440 KB |
testcase_14 | AC | 128 ms
64,512 KB |
testcase_15 | AC | 144 ms
63,744 KB |
testcase_16 | AC | 86 ms
64,768 KB |
testcase_17 | AC | 76 ms
63,872 KB |
testcase_18 | AC | 57 ms
61,440 KB |
testcase_19 | AC | 60 ms
61,312 KB |
testcase_20 | AC | 120 ms
64,768 KB |
testcase_21 | AC | 73 ms
63,232 KB |
testcase_22 | AC | 58 ms
61,824 KB |
testcase_23 | AC | 171 ms
64,384 KB |
testcase_24 | AC | 170 ms
63,616 KB |
testcase_25 | AC | 175 ms
64,000 KB |
testcase_26 | AC | 175 ms
64,128 KB |
testcase_27 | AC | 153 ms
65,024 KB |
testcase_28 | AC | 174 ms
65,024 KB |
testcase_29 | AC | 172 ms
63,744 KB |
testcase_30 | AC | 171 ms
63,744 KB |
testcase_31 | AC | 172 ms
64,896 KB |
testcase_32 | AC | 153 ms
64,896 KB |
testcase_33 | TLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
N,M = map(int,input().split()) A = list(map(int,input().split())) B = list(map(int,input().split())) flg = False ans = float('inf') for i in range(N): for j in range(M): if A[i] == B[j]: num = 0 while num <= min(N,M): if (num*N+i-j)%M == 0: flg = True ans = min(ans,num*N+i+1) break num += 1 if flg: print(ans) else: print(-1)