結果
問題 | No.1250 汝は倍数なりや? |
ユーザー | Dobnium |
提出日時 | 2020-10-09 21:28:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 77 ms / 1,000 ms |
コード長 | 387 bytes |
コンパイル時間 | 1,346 ms |
コンパイル使用メモリ | 165,680 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 08:44:03 |
合計ジャッジ時間 | 3,478 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 49 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N,H; cin >> N >> H; long long int A[N]; for(int i=0; i<N; i++){ cin >> A[i]; } long long int ans=1; for(int i=0; i<N; i++){ if(A[i]>0){ ans = ans * A[i] % H; }else{ ans = (ans * A[i] * -1) % H; } } if(ans==0){ cout << "YES" << endl; }else{ cout << "NO" << endl; } }