結果
問題 | No.1850 Rewrite Product |
ユーザー | kusagame12 |
提出日時 | 2023-11-24 20:49:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 560 bytes |
コンパイル時間 | 5,251 ms |
コンパイル使用メモリ | 83,348 KB |
実行使用メモリ | 60,792 KB |
最終ジャッジ日時 | 2024-09-26 08:47:06 |
合計ジャッジ時間 | 4,148 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ソースコード
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); } }