結果

問題 No.2811 Calculation Within Sequence
ユーザー tentententen
提出日時 2024-07-22 11:26:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 1,570 bytes
コンパイル時間 2,674 ms
コンパイル使用メモリ 78,248 KB
実行使用メモリ 60,384 KB
最終ジャッジ日時 2024-07-22 11:26:56
合計ジャッジ時間 18,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,044 KB
testcase_01 AC 55 ms
37,136 KB
testcase_02 AC 52 ms
36,796 KB
testcase_03 AC 325 ms
56,644 KB
testcase_04 AC 335 ms
56,492 KB
testcase_05 AC 402 ms
56,088 KB
testcase_06 AC 433 ms
59,200 KB
testcase_07 AC 349 ms
55,104 KB
testcase_08 AC 421 ms
58,996 KB
testcase_09 AC 412 ms
59,124 KB
testcase_10 AC 420 ms
59,168 KB
testcase_11 AC 306 ms
56,600 KB
testcase_12 AC 310 ms
55,692 KB
testcase_13 AC 399 ms
57,956 KB
testcase_14 AC 325 ms
54,248 KB
testcase_15 AC 332 ms
56,292 KB
testcase_16 AC 324 ms
56,640 KB
testcase_17 AC 452 ms
60,228 KB
testcase_18 AC 302 ms
55,452 KB
testcase_19 AC 318 ms
55,724 KB
testcase_20 AC 328 ms
53,100 KB
testcase_21 AC 426 ms
60,112 KB
testcase_22 AC 406 ms
60,384 KB
testcase_23 AC 408 ms
55,056 KB
testcase_24 AC 307 ms
50,800 KB
testcase_25 AC 193 ms
44,028 KB
testcase_26 AC 187 ms
43,344 KB
testcase_27 AC 270 ms
49,324 KB
testcase_28 AC 159 ms
43,112 KB
testcase_29 AC 274 ms
46,324 KB
testcase_30 AC 226 ms
45,560 KB
testcase_31 AC 259 ms
49,320 KB
testcase_32 AC 180 ms
44,256 KB
testcase_33 AC 238 ms
45,376 KB
testcase_34 AC 354 ms
50,284 KB
testcase_35 AC 193 ms
43,420 KB
testcase_36 AC 271 ms
47,276 KB
testcase_37 AC 250 ms
45,872 KB
testcase_38 AC 208 ms
46,440 KB
testcase_39 AC 248 ms
46,568 KB
testcase_40 AC 283 ms
49,772 KB
testcase_41 AC 303 ms
49,164 KB
testcase_42 AC 226 ms
45,788 KB
testcase_43 AC 257 ms
47,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int a = sc.nextInt();
        int b = sc.nextInt();
        int gcd = 0;
        while (a-- > 0) {
            gcd = getGCD(sc.nextInt(), gcd);
        }
        boolean enable = true;
        while (b-- > 0 && enable) {
            enable = sc.nextInt() % gcd == 0;
        }
        System.out.println(enable ? "Yes" : "No");
    }
    
    static int getGCD(int x, int y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0