結果

問題 No.1250 汝は倍数なりや?
ユーザー OmameBeansOmameBeans
提出日時 2020-10-10 16:15:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 838 bytes
コンパイル時間 1,355 ms
コンパイル使用メモリ 168,132 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 16:03:10
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i,n) for (int i = 0; i < (n); ++i)
template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b;return true;}return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b;return true;}return false;}
using namespace std;
using ll = long long;
using P = pair<int,int>;
using Pl = pair<long long,long long>;
using veci = vector<int>;
using vecl = vector<long long>;
using vecveci = vector<vector<int>>;
using vecvecl = vector<vector<long long>>;
const int MOD = 1000000007;
const double pi = acos(-1);


int main() {
    int N; cin >> N;
    ll H; cin >> H;
    vecl A(N);
    REP(i,N) {
        ll a; cin >> a;
        a = abs(a);
        A[i] = a;
    }
    ll ans = 1;
    REP(i,N) {
        ans *= A[i];
        ans %= H;
    }
    cout << (ans == 0 ? "YES" : "NO") << endl;
}
0