結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 436 ms
54,136 KB
testcase_01 AC 431 ms
54,276 KB
testcase_02 AC 436 ms
54,192 KB
testcase_03 AC 435 ms
54,044 KB
testcase_04 AC 439 ms
54,316 KB
testcase_05 AC 436 ms
54,004 KB
testcase_06 AC 435 ms
54,176 KB
testcase_07 AC 433 ms
54,336 KB
testcase_08 AC 52 ms
36,856 KB
testcase_09 AC 53 ms
37,096 KB
testcase_10 AC 56 ms
37,116 KB
testcase_11 AC 435 ms
54,020 KB
testcase_12 AC 440 ms
54,088 KB
testcase_13 AC 433 ms
53,936 KB
testcase_14 AC 437 ms
54,096 KB
testcase_15 AC 431 ms
53,960 KB
testcase_16 AC 430 ms
54,056 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