結果

問題 No.2493 K-th in L2 with L1
ユーザー yelyel
提出日時 2023-10-06 23:16:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 2,663 ms
コンパイル使用メモリ 245,124 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-26 17:00:27
合計ジャッジ時間 3,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include <atcoder/all>
//using namespace atcoder;
typedef long long ll;
typedef unsigned long long ull;
const int MAX = 1e9;
const int MIN = -1*1e9;
const ll MAXLL = 1e18;
const ll MINLL = -1*1e18;
//const ll MOD = 998244353;
//const ll MOD = 1000000007;
int main()
{
    int Q; cin >> Q;
    for(int q = 0; q < Q; q++)
    {
        int A,B; cin >> A >> B;
        if(A == 0 && B == 1)
        {
            cout << "Yes" << endl;
            cout << 0 << " " << 0 << endl;
            continue;
        }
        if(B > 4*A)
        {
            cout << "No" << endl;
            continue;
        }
        cout << "Yes" << endl;
        if(B <= 4*(A-1)) cout << 1 << " " << A-1 << endl;
        else cout << 0 << " " << A << endl;
    }
    return 0;
}
0