結果
問題 | No.1509 Swap!! |
ユーザー | milanis48663220 |
提出日時 | 2021-05-15 00:03:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,326 bytes |
コンパイル時間 | 1,255 ms |
コンパイル使用メモリ | 117,436 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 06:45:24 |
合計ジャッジ時間 | 6,038 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 105 ms
6,816 KB |
testcase_03 | AC | 103 ms
6,824 KB |
testcase_04 | AC | 106 ms
6,820 KB |
testcase_05 | AC | 103 ms
6,816 KB |
testcase_06 | AC | 105 ms
6,820 KB |
testcase_07 | AC | 104 ms
6,816 KB |
testcase_08 | AC | 106 ms
6,820 KB |
testcase_09 | AC | 105 ms
6,820 KB |
testcase_10 | AC | 105 ms
6,820 KB |
testcase_11 | AC | 96 ms
6,816 KB |
testcase_12 | AC | 95 ms
6,816 KB |
testcase_13 | AC | 96 ms
6,820 KB |
testcase_14 | AC | 95 ms
6,816 KB |
testcase_15 | AC | 95 ms
6,820 KB |
testcase_16 | AC | 94 ms
6,820 KB |
testcase_17 | AC | 97 ms
6,820 KB |
testcase_18 | AC | 95 ms
6,820 KB |
testcase_19 | AC | 96 ms
6,820 KB |
testcase_20 | AC | 96 ms
6,816 KB |
testcase_21 | AC | 106 ms
6,816 KB |
testcase_22 | AC | 104 ms
6,820 KB |
testcase_23 | AC | 103 ms
6,816 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 86 ms
6,816 KB |
testcase_28 | AC | 85 ms
6,820 KB |
testcase_29 | AC | 88 ms
6,820 KB |
testcase_30 | AC | 98 ms
6,820 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; bool solve(ll n, ll a, ll b){ if(a == 1) return true; if(gcd(a, b) != 1) return false; // if((n)/2 < b) return false; if((n+1)/2 >= b) return true; if((n)/2 < a) return false; if(n-b >= a) return true; return false; ll rl = n-b-1; ll lr = b%a, rr = (n-1)%a; if(lr < rr){ return (rl >= lr) && (rr == a-1); } return rl >= lr; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int t; cin >> t; while(t--) { ll n, a, b; cin >> n >> a >> b; if(a > b) swap(a, b); if(solve(n, a, b)) cout << "YES" << endl; else cout << "NO" << endl; } }