結果

問題 No.1850 Rewrite Product
ユーザー hourenhouren
提出日時 2022-02-25 21:24:19
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 163,888 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-09-16 15:59:21
合計ジャッジ時間 2,689 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}

int main(){
    int t;
    cin >> t;
    rep(houren,t){
        int a,b;
        cin >> a >> b;
        if(a>=b || a>=5) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
    return 0;
}
0