結果

問題 No.1250 汝は倍数なりや?
ユーザー yicodeyicode
提出日時 2023-05-23 13:16:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 85 ms / 1,000 ms
コード長 346 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 165,984 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-23 01:29:56
合計ジャッジ時間 3,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Graph = vector<vector<int>>;
int main() {
  long long N,H; cin >> N >> H;
  long long ans = 1;
  for(int i = 0; i < N; i++) {
    long long a; cin >> a;
    ans *= a;
    ans %= H;
  }
  if(ans == 0) {
    cout << "YES" << endl;
  }else {
    cout << "NO" << endl;
  }
}

0