結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-13 22:40:18
言語 Scala(Beta)
(3.4.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 914 ms
64,848 KB
testcase_01 AC 926 ms
64,700 KB
testcase_02 AC 918 ms
64,756 KB
testcase_03 AC 924 ms
64,824 KB
testcase_04 AC 923 ms
64,744 KB
testcase_05 AC 911 ms
64,652 KB
testcase_06 AC 912 ms
64,676 KB
testcase_07 AC 921 ms
64,684 KB
testcase_08 AC 918 ms
64,708 KB
testcase_09 AC 917 ms
64,676 KB
testcase_10 AC 923 ms
64,704 KB
権限があれば一括ダウンロードができます

ソースコード

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