結果

問題 No.1850 Rewrite Product
ユーザー kusagame12kusagame12
提出日時 2023-11-24 20:49:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 80,604 KB
実行使用メモリ 74,976 KB
最終ジャッジ日時 2023-11-24 20:49:33
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        
        int t = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for(int i = 0 ; i < t ; i++){
            int x = sc.nextInt();
            int y = sc.nextInt();
            if(x >= y || x > 4){
                sb.append("Yes\n");
            }else{
                sb.append("No\n");
            }
        }
        
        System.out.println(sb);
        
    }
    
}
0