結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー AsahiAsahi
提出日時 2023-02-06 08:44:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 948 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 77,096 KB
実行使用メモリ 58,768 KB
最終ジャッジ日時 2024-07-04 14:50:29
合計ジャッジ時間 15,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
42,264 KB
testcase_01 AC 148 ms
42,268 KB
testcase_02 AC 129 ms
40,944 KB
testcase_03 AC 238 ms
46,680 KB
testcase_04 AC 254 ms
47,756 KB
testcase_05 AC 244 ms
46,768 KB
testcase_06 AC 243 ms
46,824 KB
testcase_07 AC 243 ms
46,276 KB
testcase_08 AC 237 ms
46,920 KB
testcase_09 AC 238 ms
46,612 KB
testcase_10 AC 243 ms
46,664 KB
testcase_11 AC 239 ms
46,868 KB
testcase_12 AC 222 ms
46,932 KB
testcase_13 AC 226 ms
46,736 KB
testcase_14 AC 249 ms
47,280 KB
testcase_15 AC 257 ms
47,460 KB
testcase_16 AC 233 ms
46,620 KB
testcase_17 AC 218 ms
46,040 KB
testcase_18 AC 210 ms
44,512 KB
testcase_19 AC 216 ms
44,812 KB
testcase_20 AC 250 ms
47,964 KB
testcase_21 AC 225 ms
46,688 KB
testcase_22 AC 220 ms
46,304 KB
testcase_23 AC 261 ms
48,120 KB
testcase_24 AC 265 ms
48,192 KB
testcase_25 AC 261 ms
47,356 KB
testcase_26 AC 263 ms
48,156 KB
testcase_27 AC 261 ms
48,164 KB
testcase_28 AC 268 ms
48,408 KB
testcase_29 AC 261 ms
47,984 KB
testcase_30 AC 257 ms
47,876 KB
testcase_31 AC 254 ms
47,776 KB
testcase_32 AC 260 ms
47,996 KB
testcase_33 AC 246 ms
47,196 KB
testcase_34 AC 140 ms
42,388 KB
testcase_35 AC 145 ms
42,300 KB
testcase_36 AC 221 ms
46,492 KB
testcase_37 AC 218 ms
46,460 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

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[100000];
        int [] b = new int[100000];
        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<100000;i++) a[i] = a[i%n];
        for(int i=0;i<100000;i++) b[i] = b[i%m];
        int ans = -1;
        for(int i=0;i<100000;i++) {
            if(a[i] == b[i]) {
                ans = i+1;
                break;
            }
        }
        output.print(ans);
        output.flush();
    }
}
0