結果

問題 No.1699 Unfair RPS
コンテスト
ユーザー harurun
提出日時 2021-09-13 22:40:18
言語 Scala(Beta)
(3.8.2)
コンパイル:
scalac _filename_
実行:
/usr/bin/scala_run _class_
結果
AC  
実行時間 275 ms / 2,000 ms
+ 440µs
コード長 213 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 6,487 ms
コンパイル使用メモリ 257,424 KB
実行使用メモリ 51,672 KB
最終ジャッジ日時 2026-07-28 17:17:54
合計ジャッジ時間 10,993 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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