結果

問題 No.1850 Rewrite Product
ユーザー 👑 CleyL
提出日時 2022-07-09 00:13:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 66,144 KB
最終ジャッジ日時 2025-01-30 05:42:54
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int n;cin>>n;
    for(int i = 0; n > i; i++){
        int a,b;cin>>a>>b;
        if(a == 1 && b != 1)cout << "No" << endl;
        else cout << "Yes" << endl;
    }
}
0