結果

問題 No.2682 Visible Divisible
ユーザー downerdowner
提出日時 2024-03-20 21:55:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 2,808 ms
コンパイル使用メモリ 247,704 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-09-30 07:46:02
合計ジャッジ時間 6,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
6,400 KB
testcase_01 AC 187 ms
6,272 KB
testcase_02 AC 195 ms
6,528 KB
testcase_03 AC 188 ms
6,528 KB
testcase_04 AC 196 ms
6,272 KB
testcase_05 AC 193 ms
6,272 KB
testcase_06 AC 191 ms
6,528 KB
testcase_07 AC 181 ms
6,144 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 186 ms
6,400 KB
testcase_12 AC 195 ms
6,272 KB
testcase_13 AC 183 ms
6,400 KB
testcase_14 AC 191 ms
6,272 KB
testcase_15 AC 174 ms
6,400 KB
testcase_16 AC 169 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    long long N, K;
    cin >> N >> K;
    vector<long long> A(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }

    vector<long long> G(N);
    long long L = 1;
    for(int i = 0; i < N; i++) {
        G[i] = gcd(A[i], K);
        L = lcm(L, G[i]);
    }

    if(L % K == 0) cout << "Yes" << endl;
    else cout << "No" << endl;



    return 0;
}
0