結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
49,188 KB
testcase_01 AC 162 ms
49,164 KB
testcase_02 AC 161 ms
49,300 KB
testcase_03 AC 264 ms
54,392 KB
testcase_04 AC 281 ms
54,552 KB
testcase_05 AC 271 ms
54,584 KB
testcase_06 AC 274 ms
54,252 KB
testcase_07 AC 280 ms
54,732 KB
testcase_08 AC 275 ms
54,416 KB
testcase_09 AC 265 ms
54,388 KB
testcase_10 AC 277 ms
54,480 KB
testcase_11 AC 264 ms
55,004 KB
testcase_12 AC 263 ms
53,856 KB
testcase_13 AC 259 ms
54,428 KB
testcase_14 AC 280 ms
54,748 KB
testcase_15 AC 286 ms
55,236 KB
testcase_16 AC 263 ms
54,828 KB
testcase_17 AC 252 ms
53,872 KB
testcase_18 AC 241 ms
51,860 KB
testcase_19 AC 246 ms
52,028 KB
testcase_20 AC 278 ms
54,548 KB
testcase_21 AC 259 ms
53,776 KB
testcase_22 AC 247 ms
52,316 KB
testcase_23 AC 295 ms
55,600 KB
testcase_24 AC 291 ms
55,260 KB
testcase_25 AC 294 ms
55,356 KB
testcase_26 AC 296 ms
55,236 KB
testcase_27 AC 294 ms
55,132 KB
testcase_28 AC 294 ms
55,240 KB
testcase_29 AC 296 ms
55,384 KB
testcase_30 AC 295 ms
55,260 KB
testcase_31 AC 301 ms
55,112 KB
testcase_32 AC 290 ms
55,272 KB
testcase_33 AC 287 ms
54,888 KB
testcase_34 AC 162 ms
48,972 KB
testcase_35 AC 167 ms
49,268 KB
testcase_36 AC 254 ms
54,396 KB
testcase_37 AC 268 ms
54,784 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[1000000];
        int [] b = new int[1000000];
        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<1000000;i++) a[i] = a[i%n];
        for(int i=0;i<1000000;i++) b[i] = b[i%m];
        int ans = -1;
        for(int i=0;i<1000000;i++) {
            if(a[i] == b[i]) {
                ans = i+1;
                break;
            }
        }
        output.print(ans);
        output.flush();
    }
}
0