結果

問題 No.1987 Sandglass Inconvenience
ユーザー RVindicatioRVindicatio
提出日時 2022-06-24 21:36:12
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 3,033 ms
コンパイル使用メモリ 216,596 KB
最終ジャッジ日時 2025-01-30 00:11:51
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
using namespace std;

using ll = long long;
const int INF = 1e9 + 10;
const ll inf = 1LL<<60;

void solve() {
  auto gcd = [](auto&& gcd, ll x, ll y) -> ll {
    if (x%y) return gcd(gcd, y, x%y);
    return y;
  };
  ll a, b, c, x; cin >> a >> b >> c >> x;
  if (x%a == 0 || x%b == 0 || x%c == 0 || x%gcd(gcd, a, b) == 0 || x%gcd(gcd, b, c) == 0 || x%gcd(gcd, a, c) == 0) {
    cout << "Yes" << '\n';
    return;
  }
  if (x%gcd(gcd, a, gcd(gcd, b, c)) == 0) {
    cout << "Yes" << '\n';
    return;
  }
  cout << "No" << '\n';
}

int main() {
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  // int t; cin >> t;
  /*while (t--)*/ solve();
}
0