結果
問題 | No.1250 汝は倍数なりや? |
ユーザー | Mister |
提出日時 | 2020-10-09 21:22:25 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 44 ms / 1,000 ms |
コード長 | 358 bytes |
コンパイル時間 | 699 ms |
コンパイル使用メモリ | 67,556 KB |
最終ジャッジ日時 | 2025-01-15 03:48:00 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 49 |
ソースコード
#include <iostream> #include <numeric> void solve() { int n, h; std::cin >> n >> h; while (n--) { int x; std::cin >> x; h /= std::gcd(h, std::abs(x)); } std::cout << (h == 1 ? "YES" : "NO") << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }