結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー AsahiAsahi
提出日時 2023-02-06 08:51:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 47,896 KB
最終ジャッジ日時 2024-07-04 14:56:21
合計ジャッジ時間 16,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,532 KB
testcase_01 AC 121 ms
41,632 KB
testcase_02 AC 123 ms
41,344 KB
testcase_03 AC 227 ms
45,980 KB
testcase_04 AC 229 ms
46,296 KB
testcase_05 AC 219 ms
45,988 KB
testcase_06 AC 229 ms
47,472 KB
testcase_07 AC 230 ms
45,900 KB
testcase_08 AC 213 ms
45,992 KB
testcase_09 AC 223 ms
45,588 KB
testcase_10 AC 227 ms
45,848 KB
testcase_11 AC 210 ms
45,852 KB
testcase_12 AC 218 ms
46,296 KB
testcase_13 AC 214 ms
45,580 KB
testcase_14 AC 236 ms
46,716 KB
testcase_15 AC 242 ms
47,104 KB
testcase_16 AC 207 ms
46,096 KB
testcase_17 AC 206 ms
45,748 KB
testcase_18 AC 199 ms
43,432 KB
testcase_19 AC 196 ms
43,832 KB
testcase_20 AC 223 ms
46,248 KB
testcase_21 AC 207 ms
45,564 KB
testcase_22 AC 205 ms
44,568 KB
testcase_23 AC 252 ms
47,328 KB
testcase_24 AC 251 ms
47,152 KB
testcase_25 AC 247 ms
47,552 KB
testcase_26 AC 242 ms
46,752 KB
testcase_27 AC 247 ms
47,092 KB
testcase_28 AC 237 ms
47,016 KB
testcase_29 AC 247 ms
46,992 KB
testcase_30 AC 253 ms
47,504 KB
testcase_31 AC 243 ms
47,536 KB
testcase_32 AC 249 ms
47,288 KB
testcase_33 AC 441 ms
47,784 KB
testcase_34 AC 124 ms
41,648 KB
testcase_35 AC 123 ms
41,384 KB
testcase_36 AC 204 ms
45,740 KB
testcase_37 AC 211 ms
45,552 KB
testcase_38 AC 449 ms
47,780 KB
testcase_39 AC 472 ms
47,692 KB
testcase_40 AC 452 ms
47,536 KB
testcase_41 AC 445 ms
47,704 KB
testcase_42 AC 448 ms
47,420 KB
testcase_43 AC 430 ms
47,740 KB
testcase_44 AC 433 ms
47,808 KB
testcase_45 AC 439 ms
47,536 KB
testcase_46 AC 470 ms
47,896 KB
testcase_47 AC 447 ms
47,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        int n = sc.nextInt();
        int m = sc.nextInt();
        int [] a = new int[n];
        int [] b = new int[m];
        for(int i=0;i<n;i++) a[i] = sc.nextInt();
        for(int i=0;i<m;i++) b[i] = sc.nextInt();
        int ans = -1;
        for(int i=0;i<n*m;i++) {
            if(a[i%n] == b[i%m]) {
                ans = i+1;
                break;
            }
        }
        output.print(ans);
        output.flush();
    }
}
0