結果

問題 No.2682 Visible Divisible
ユーザー kokoseikokosei
提出日時 2024-03-20 22:52:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 2,689 ms
コンパイル使用メモリ 244,756 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-03-20 22:52:43
合計ジャッジ時間 6,381 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
6,676 KB
testcase_01 AC 153 ms
6,676 KB
testcase_02 AC 155 ms
6,676 KB
testcase_03 AC 156 ms
6,676 KB
testcase_04 AC 155 ms
6,676 KB
testcase_05 AC 154 ms
6,676 KB
testcase_06 AC 151 ms
6,676 KB
testcase_07 AC 151 ms
6,676 KB
testcase_08 AC 1 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 156 ms
6,676 KB
testcase_12 AC 157 ms
6,676 KB
testcase_13 AC 151 ms
6,676 KB
testcase_14 AC 153 ms
6,676 KB
testcase_15 AC 151 ms
6,676 KB
testcase_16 AC 151 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int N;
ll K, A[202020];
template<typename T>
T gcd(T a, T b){
    if(b == 0)return a;
    return gcd(b, a % b);
}
template<typename T>
T lcm(T a, T b){
    return a * b / gcd(a, b);
}
int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cin >> N >> K;
    __int128_t g = 1;
    for(int i = 0;i < N;i++){
        ll a; cin >> a;
        __int128_t k = gcd(K, a);
        g = lcm(g, k);
        g = gcd((__int128_t)K, g);
    }
    cout << (g == K ? "Yes\n" : "No\n");
    return 0;
}
0