結果
問題 | No.1509 Swap!! |
ユーザー | manjuuu_onsen |
提出日時 | 2021-05-14 23:04:59 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 413 bytes |
コンパイル時間 | 1,308 ms |
コンパイル使用メモリ | 166,328 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 03:46:53 |
合計ジャッジ時間 | 7,264 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 12 WA * 18 |
ソースコード
#include<bits/stdc++.h>using namespace std;using ll = long long;using pint = pair<int,int>;void solve();int main(){int T;cin >> T;while(T--)solve();}void solve(){ll N; cin >> N;ll x, y; cin >> x >> y;if(x > y)swap(x, y);if(x == 1 || y == 1) {cout << "YES" << endl; return;}if(x * 2 < N) {cout << "NO" << endl;return;}cout << (__gcd(x, y) == 1 ? "YES" : "NO") << endl;}