結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-13 22:40:18
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,011 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 12,019 ms
コンパイル使用メモリ 251,992 KB
実行使用メモリ 62,636 KB
最終ジャッジ日時 2023-09-30 09:33:05
合計ジャッジ時間 24,544 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,011 ms
62,424 KB
testcase_01 AC 985 ms
62,184 KB
testcase_02 AC 946 ms
61,892 KB
testcase_03 AC 946 ms
62,636 KB
testcase_04 AC 956 ms
62,144 KB
testcase_05 AC 950 ms
61,872 KB
testcase_06 AC 942 ms
62,400 KB
testcase_07 AC 950 ms
61,976 KB
testcase_08 AC 955 ms
62,056 KB
testcase_09 AC 944 ms
62,040 KB
testcase_10 AC 943 ms
62,036 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