結果

問題 No.2682 Visible Divisible
ユーザー tentententen
提出日時 2024-05-07 17:12:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 1,553 bytes
コンパイル時間 2,440 ms
コンパイル使用メモリ 78,332 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-05-07 17:12:18
合計ジャッジ時間 12,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 430 ms
54,052 KB
testcase_01 AC 476 ms
53,816 KB
testcase_02 AC 434 ms
54,184 KB
testcase_03 AC 435 ms
54,044 KB
testcase_04 AC 448 ms
53,960 KB
testcase_05 AC 441 ms
54,184 KB
testcase_06 AC 454 ms
54,324 KB
testcase_07 AC 438 ms
53,988 KB
testcase_08 AC 52 ms
37,028 KB
testcase_09 AC 52 ms
36,932 KB
testcase_10 AC 52 ms
37,096 KB
testcase_11 AC 432 ms
53,904 KB
testcase_12 AC 449 ms
54,312 KB
testcase_13 AC 432 ms
54,356 KB
testcase_14 AC 438 ms
54,024 KB
testcase_15 AC 426 ms
54,008 KB
testcase_16 AC 447 ms
54,040 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 n = sc.nextInt();
        long ans = 1;
        long k = sc.nextLong();
        while (n-- > 0) {
            ans = getLCM(ans, getGCD(k, sc.nextLong()));
        }
        System.out.println(k == ans ? "Yes" : "No");
    }
    
    static long getLCM(long x, long y) {
        return x / getGCD(x, y) * y;
    }
    
    static long getGCD(long x, long 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