結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー AsahiAsahi
提出日時 2023-02-06 08:46:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 958 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 77,328 KB
実行使用メモリ 140,388 KB
最終ジャッジ日時 2024-07-04 14:53:04
合計ジャッジ時間 21,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
121,792 KB
testcase_01 AC 246 ms
121,156 KB
testcase_02 AC 236 ms
122,056 KB
testcase_03 AC 359 ms
127,244 KB
testcase_04 AC 394 ms
128,820 KB
testcase_05 AC 375 ms
127,352 KB
testcase_06 AC 400 ms
128,332 KB
testcase_07 AC 384 ms
127,792 KB
testcase_08 AC 405 ms
127,208 KB
testcase_09 AC 394 ms
126,744 KB
testcase_10 AC 401 ms
127,712 KB
testcase_11 AC 376 ms
126,776 KB
testcase_12 AC 354 ms
126,504 KB
testcase_13 AC 375 ms
126,588 KB
testcase_14 AC 368 ms
128,812 KB
testcase_15 AC 417 ms
129,160 KB
testcase_16 AC 397 ms
126,744 KB
testcase_17 AC 387 ms
126,188 KB
testcase_18 AC 354 ms
124,876 KB
testcase_19 AC 375 ms
125,400 KB
testcase_20 AC 400 ms
128,648 KB
testcase_21 AC 376 ms
126,196 KB
testcase_22 AC 368 ms
125,468 KB
testcase_23 AC 403 ms
130,424 KB
testcase_24 AC 401 ms
130,296 KB
testcase_25 AC 385 ms
130,612 KB
testcase_26 AC 385 ms
130,704 KB
testcase_27 AC 376 ms
130,480 KB
testcase_28 AC 393 ms
130,692 KB
testcase_29 AC 401 ms
130,220 KB
testcase_30 AC 414 ms
130,684 KB
testcase_31 AC 411 ms
130,580 KB
testcase_32 AC 419 ms
130,568 KB
testcase_33 AC 389 ms
129,392 KB
testcase_34 AC 220 ms
121,128 KB
testcase_35 AC 244 ms
120,588 KB
testcase_36 AC 331 ms
125,184 KB
testcase_37 AC 328 ms
125,304 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[10000000];
        int [] b = new int[10000000];
        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<10000000;i++) a[i] = a[i%n];
        for(int i=0;i<10000000;i++) b[i] = b[i%m];
        int ans = -1;
        for(int i=0;i<10000000;i++) {
            if(a[i] == b[i]) {
                ans = i+1;
                break;
            }
        }
        output.print(ans);
        output.flush();
    }
}
0