結果

問題 No.2682 Visible Divisible
ユーザー ks2mks2m
提出日時 2024-03-20 21:36:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,294 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 78,104 KB
実行使用メモリ 60,712 KB
最終ジャッジ日時 2024-09-30 07:26:32
合計ジャッジ時間 21,215 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,236 ms
58,600 KB
testcase_01 AC 1,206 ms
59,132 KB
testcase_02 AC 1,117 ms
58,156 KB
testcase_03 AC 1,099 ms
60,300 KB
testcase_04 AC 1,245 ms
59,228 KB
testcase_05 AC 1,294 ms
59,132 KB
testcase_06 AC 1,237 ms
60,712 KB
testcase_07 AC 1,084 ms
59,404 KB
testcase_08 AC 110 ms
41,404 KB
testcase_09 AC 111 ms
41,200 KB
testcase_10 AC 114 ms
41,272 KB
testcase_11 AC 1,248 ms
59,748 KB
testcase_12 AC 1,239 ms
59,740 KB
testcase_13 AC 1,147 ms
58,240 KB
testcase_14 AC 1,249 ms
60,552 KB
testcase_15 AC 1,156 ms
59,580 KB
testcase_16 AC 1,183 ms
59,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long k = sc.nextLong();
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextLong();
		}
		sc.close();

		long s = 1;
		for (int i = 0; i < n; i++) {
			long g1 = gcd(s, a[i]);
			a[i] /= g1;
			long g2 = gcd(k, a[i]);
			k /= g2;
			s = lcm(s, g2);
		}
		if (k == 1) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}

	static long gcd(long a, long b) {
		return b == 0 ? a : gcd(b, a % b);
	}

	static long lcm(long a, long b) {
		BigInteger ba = BigInteger.valueOf(a);
		BigInteger bb = BigInteger.valueOf(b);
		return ba.multiply(bb).divide(ba.gcd(bb)).longValue();
	}
}
0