結果
| 問題 |
No.1850 Rewrite Product
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-07-16 21:48:38 |
| 言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 381 ms / 2,000 ms |
| コード長 | 279 bytes |
| コンパイル時間 | 712 ms |
| コンパイル使用メモリ | 119,296 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 22:13:28 |
| 合計ジャッジ時間 | 1,514 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 |
ソースコード
#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;
}