結果

問題 No.1850 Rewrite Product
ユーザー 👑 NachiaNachia
提出日時 2022-02-25 21:25:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 85,904 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-16 16:01:19
合計ジャッジ時間 1,273 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <unordered_set>
#include <atcoder/modint>
using namespace std;
using i64 = long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
using modint = atcoder::static_modint<998244353>;


int main(){
    int T; cin >> T;
    while(T--){
        i64 X, Y; cin >> X >> Y;
        i64 MaxY = 1001001001;
        if(X == 1) MaxY = 1;
        if(X == 2) MaxY = 2;
        if(X == 3) MaxY = 3;
        if(X == 4) MaxY = 4;
        if(Y <= MaxY) cout << "Yes\n"; else cout << "No\n";
    }
    return 0;
}




struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0