結果
問題 | No.1850 Rewrite Product |
ユーザー | GrilledSushi |
提出日時 | 2022-07-16 21:48:38 |
言語 | C++17(clang) (17.0.6 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 381 ms
5,376 KB |
ソースコード
#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; }