結果

問題 No.1850 Rewrite Product
ユーザー hourenhouren
提出日時 2022-02-25 21:24:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 430 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 1,604 ms
コンパイル使用メモリ 167,088 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-07-03 16:02:50
合計ジャッジ時間 2,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 430 ms
6,940 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