結果

問題 No.201 yukicoderじゃんけん
ユーザー くわいくわい
提出日時 2015-11-11 00:41:58
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 878 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 10,120 ms
コンパイル使用メモリ 238,932 KB
実行使用メモリ 62,708 KB
最終ジャッジ日時 2024-06-29 11:06:16
合計ジャッジ時間 26,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 863 ms
62,568 KB
testcase_01 AC 866 ms
62,672 KB
testcase_02 AC 860 ms
62,400 KB
testcase_03 AC 863 ms
62,680 KB
testcase_04 AC 865 ms
62,636 KB
testcase_05 AC 859 ms
62,708 KB
testcase_06 AC 870 ms
62,348 KB
testcase_07 AC 864 ms
62,572 KB
testcase_08 AC 861 ms
62,688 KB
testcase_09 AC 855 ms
62,684 KB
testcase_10 AC 878 ms
62,372 KB
testcase_11 AC 867 ms
62,656 KB
testcase_12 AC 872 ms
62,464 KB
testcase_13 AC 871 ms
62,524 KB
testcase_14 AC 861 ms
62,252 KB
testcase_15 AC 871 ms
62,416 KB
testcase_16 AC 876 ms
62,096 KB
testcase_17 AC 863 ms
62,632 KB
testcase_18 AC 866 ms
62,332 KB
testcase_19 AC 876 ms
62,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Problem201 {

  def proc(a: Array[String], b: Array[String]): String = {
    val (nameA, pointA) = (a(0), a(1))
    val (nameB, pointB) = (b(0), b(1))

    pointA.length == pointB.length match {
      case true => pointA.compareTo(pointB) match {
        case 0 => "-1"
        case x if x > 0 => nameA
        case x if x < 0 => nameB
      }
      case false => if (pointA.length > pointB.length) nameA else nameB
    }
  }

  def main(args: Array[String]): Unit = {
    val a = StdIn.readLine().split(" ")
    val b = StdIn.readLine().split(" ")

    val result: String = proc(a, b)
    println(result)
  }
}
0