結果

問題 No.1850 Rewrite Product
ユーザー yakkiyakki
提出日時 2022-02-26 08:54:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 67,880 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-17 07:24:36
合計ジャッジ時間 1,461 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int t; cin >> t;
    while(t--){
        int x,y; cin >> x >> y;
        if(x >= y) cout << "Yes" << endl;
        else if(x <= 4) cout << "No" << endl;
        else cout << "Yes" << endl;
    }
}
0