結果
| 問題 | 
                            No.1850 Rewrite Product
                             | 
                    
| コンテスト | |
| ユーザー | 
                             siman
                         | 
                    
| 提出日時 | 2022-02-26 08:38:02 | 
| 言語 | Ruby  (3.4.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 411 ms / 2,000 ms | 
| コード長 | 127 bytes | 
| コンパイル時間 | 50 ms | 
| コンパイル使用メモリ | 7,424 KB | 
| 実行使用メモリ | 12,288 KB | 
| 最終ジャッジ日時 | 2024-07-04 04:05:26 | 
| 合計ジャッジ時間 | 1,390 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 1 | 
コンパイルメッセージ
Syntax OK
ソースコード
T = gets.to_i
T.times do
  x, y = gets.split.map(&:to_i)
  if x >= y || x >= 5
    puts 'Yes'
  else
    puts 'No'
  end
end
            
            
            
        
            
siman