結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー AsahiAsahi
提出日時 2023-02-06 08:54:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,036 ms / 2,000 ms
コード長 966 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 76,996 KB
実行使用メモリ 260,284 KB
最終ジャッジ日時 2024-07-04 14:59:18
合計ジャッジ時間 29,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,344 KB
testcase_01 AC 134 ms
41,460 KB
testcase_02 AC 136 ms
41,368 KB
testcase_03 AC 400 ms
95,636 KB
testcase_04 AC 557 ms
161,628 KB
testcase_05 AC 427 ms
119,828 KB
testcase_06 AC 446 ms
142,920 KB
testcase_07 AC 464 ms
138,520 KB
testcase_08 AC 394 ms
106,876 KB
testcase_09 AC 260 ms
52,888 KB
testcase_10 AC 464 ms
137,868 KB
testcase_11 AC 419 ms
101,076 KB
testcase_12 AC 368 ms
93,012 KB
testcase_13 AC 257 ms
53,196 KB
testcase_14 AC 530 ms
171,520 KB
testcase_15 AC 580 ms
194,900 KB
testcase_16 AC 363 ms
90,648 KB
testcase_17 AC 342 ms
72,584 KB
testcase_18 AC 239 ms
51,900 KB
testcase_19 AC 257 ms
55,464 KB
testcase_20 AC 563 ms
168,692 KB
testcase_21 AC 309 ms
68,928 KB
testcase_22 AC 247 ms
53,800 KB
testcase_23 AC 744 ms
247,160 KB
testcase_24 AC 708 ms
248,060 KB
testcase_25 AC 736 ms
247,880 KB
testcase_26 AC 679 ms
247,748 KB
testcase_27 AC 684 ms
247,080 KB
testcase_28 AC 685 ms
258,544 KB
testcase_29 AC 750 ms
247,408 KB
testcase_30 AC 731 ms
248,368 KB
testcase_31 AC 693 ms
248,028 KB
testcase_32 AC 691 ms
258,048 KB
testcase_33 AC 1,036 ms
260,284 KB
testcase_34 AC 137 ms
41,152 KB
testcase_35 AC 135 ms
41,260 KB
testcase_36 AC 233 ms
45,768 KB
testcase_37 AC 218 ms
45,688 KB
testcase_38 AC 883 ms
257,108 KB
testcase_39 AC 872 ms
257,636 KB
testcase_40 AC 950 ms
259,216 KB
testcase_41 AC 905 ms
257,356 KB
testcase_42 AC 943 ms
255,716 KB
testcase_43 AC 676 ms
236,056 KB
testcase_44 AC 697 ms
238,044 KB
testcase_45 AC 706 ms
254,456 KB
testcase_46 AC 719 ms
250,612 KB
testcase_47 AC 740 ms
241,272 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 MAX = n*m;
        int [] a = new int[MAX+1];
        int [] b = new int[MAX+1];
        for(int i=0;i<n;i++) a[i] = sc.nextInt();
        for(int i=0;i<m;i++) b[i] = sc.nextInt();
        for(int i=0;i<MAX+1;i++) a[i] = a[i%n];
        for(int i=0;i<MAX+1;i++) b[i] = b[i%m];
        int ans = -1;
        for(int i=0;i<MAX+1;i++) {
            if(a[i] == b[i]) {
                ans = i+1;
                break;
            }
        }
        output.print(ans);
        output.flush();
    }
}
0