結果

問題 No.1850 Rewrite Product
ユーザー yudedakoyudedako
提出日時 2022-03-01 11:40:17
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,579 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 10,470 ms
コンパイル使用メモリ 258,400 KB
実行使用メモリ 72,380 KB
最終ジャッジ日時 2024-07-07 16:12:13
合計ジャッジ時間 14,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 775 ms
64,844 KB
testcase_01 AC 1,579 ms
72,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable.*
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*
import scala.reflect.ClassTag
import scala.util.*
import scala.annotation.tailrec
import scala.collection.mutable


@main def main =
  val testCase = readLine.toInt
  for _ <- 0 until testCase do
    val Array(x, y) = readLine.split(' ').map(_.toInt)
    println{
      if x >= y || x > 4 then "Yes"
      else "No"
    }
0