結果

問題 No.2682 Visible Divisible
ユーザー kokoseikokosei
提出日時 2024-03-20 22:52:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 3,097 ms
コンパイル使用メモリ 243,540 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 08:59:51
合計ジャッジ時間 6,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
5,248 KB
testcase_01 AC 135 ms
5,248 KB
testcase_02 AC 135 ms
5,248 KB
testcase_03 AC 137 ms
5,248 KB
testcase_04 AC 142 ms
5,248 KB
testcase_05 AC 139 ms
5,248 KB
testcase_06 AC 136 ms
5,248 KB
testcase_07 AC 135 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 137 ms
5,248 KB
testcase_12 AC 137 ms
5,248 KB
testcase_13 AC 139 ms
5,248 KB
testcase_14 AC 137 ms
5,248 KB
testcase_15 AC 133 ms
5,248 KB
testcase_16 AC 134 ms
5,248 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