結果

問題 No.1250 汝は倍数なりや?
ユーザー nak2yoshi
提出日時 2020-10-09 23:21:50
言語 D
(dmd 2.109.1)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 175,660 KB
実行使用メモリ 14,648 KB
最終ジャッジ日時 2024-06-22 09:24:29
合計ジャッジ時間 5,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23 WA * 11 TLE * 1 -- * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    auto input = readln.split.to!(long[]);
    auto N = input[0], H = input[1];
    auto A = readln.split.to!(long[]);

    if (A.count!"a == 0" > 0) {
        writeln("NO");
        return;
    }

    if (A.count!"a < 0" % 2) {
        writeln("NO");
        return;
    }

    BigInt P = 1;
    foreach (i; 0 .. N) {
        P *= A[i];
        if (P % H == 0) {
            writeln("YES");
            return;
        }
    }
    writeln("NO");
}
0