結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-13 22:40:18
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 926 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 11,875 ms
コンパイル使用メモリ 257,504 KB
実行使用メモリ 64,848 KB
最終ジャッジ日時 2024-07-23 03:36:19
合計ジャッジ時間 23,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main{
  import scala.io.StdIn._
  def main(args: Array[String]): Unit = {
    val Array(b,c)=readLine().split(" ").map(_.toInt)
    if (b==c){
      println("Yes")
    }else{
      println("No")
    }
  }
}
0