結果
問題 | No.1850 Rewrite Product |
ユーザー | yakki |
提出日時 | 2022-02-26 08:54:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 404 ms / 2,000 ms |
コード長 | 254 bytes |
コンパイル時間 | 493 ms |
コンパイル使用メモリ | 67,856 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 04:20:11 |
合計ジャッジ時間 | 1,365 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 404 ms
5,376 KB |
ソースコード
#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; } }