結果

問題 No.1850 Rewrite Product
ユーザー GrilledSushiGrilledSushi
提出日時 2022-07-16 21:48:38
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 996 ms
コンパイル使用メモリ 84,820 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-11 07:44:57
合計ジャッジ時間 2,064 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cstdint>

int main(){
    std::uint32_t t;
    std::cin >> t;
    for(std::uint32_t i = 0; i < t; i++){
        std::uint32_t x, y;
        std::cin >> x >> y;
        std::cout << (x >= y || x > 4 ? "Yes" : "No") << std::endl;
    }
    return 0;
}
0