結果

問題 No.293 4>7の世界
ユーザー くわいくわい
提出日時 2015-10-24 22:29:25
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 861 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 11,567 ms
コンパイル使用メモリ 258,100 KB
実行使用メモリ 63,884 KB
最終ジャッジ日時 2024-06-11 14:35:45
合計ジャッジ時間 33,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 800 ms
63,400 KB
testcase_01 AC 801 ms
63,252 KB
testcase_02 AC 794 ms
63,356 KB
testcase_03 AC 832 ms
63,680 KB
testcase_04 AC 810 ms
63,632 KB
testcase_05 AC 830 ms
63,780 KB
testcase_06 AC 810 ms
63,432 KB
testcase_07 AC 843 ms
63,504 KB
testcase_08 AC 839 ms
63,772 KB
testcase_09 AC 821 ms
63,884 KB
testcase_10 AC 799 ms
63,528 KB
testcase_11 AC 848 ms
63,860 KB
testcase_12 AC 851 ms
63,776 KB
testcase_13 AC 831 ms
63,476 KB
testcase_14 AC 833 ms
63,788 KB
testcase_15 AC 844 ms
63,476 KB
testcase_16 AC 817 ms
63,272 KB
testcase_17 AC 861 ms
63,668 KB
testcase_18 AC 839 ms
63,596 KB
testcase_19 AC 834 ms
63,764 KB
testcase_20 AC 814 ms
63,400 KB
testcase_21 AC 815 ms
63,288 KB
testcase_22 AC 833 ms
63,644 KB
testcase_23 AC 825 ms
63,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Problem293 {

  def keta(a: Int): Int = a.toString.length

  def max(a: Int, b: Int): Int = {
    if (keta(a) != keta(b)) {
      return a max b
    }

    val sa = a.toString
    val sb = b.toString

    (0 until sa.length) foreach { i =>
      val ca = sa(i) - '0'
      val cb = sb(i) - '0'

      (ca, cb) match {
        case (4, 7) => return a
        case (7, 4) => return b
        case _ if ca != cb => return a max b
        case _ => // eq
      }
    }

    // 同じ
    a
  }

  def main(args: Array[String]) = {
    val sc = new Scanner(System.in)
    val a = sc.nextInt()
    val b = sc.nextInt()

    val result = max(a, b)
    println(result)
  }
}
0