結果

問題 No.293 4>7の世界
ユーザー 5h0t4r05h0t4r0
提出日時 2015-11-02 16:47:57
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 945 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 9,965 ms
コンパイル使用メモリ 261,692 KB
実行使用メモリ 63,512 KB
最終ジャッジ日時 2024-06-29 04:42:53
合計ジャッジ時間 34,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 928 ms
63,200 KB
testcase_01 AC 922 ms
63,256 KB
testcase_02 AC 936 ms
63,132 KB
testcase_03 AC 929 ms
63,144 KB
testcase_04 AC 935 ms
63,124 KB
testcase_05 AC 944 ms
63,392 KB
testcase_06 AC 925 ms
63,244 KB
testcase_07 AC 945 ms
63,512 KB
testcase_08 AC 933 ms
63,060 KB
testcase_09 AC 938 ms
63,132 KB
testcase_10 AC 933 ms
63,296 KB
testcase_11 AC 933 ms
63,048 KB
testcase_12 AC 927 ms
63,360 KB
testcase_13 AC 931 ms
63,080 KB
testcase_14 AC 939 ms
63,272 KB
testcase_15 AC 915 ms
63,208 KB
testcase_16 AC 928 ms
63,152 KB
testcase_17 AC 939 ms
63,096 KB
testcase_18 AC 942 ms
63,260 KB
testcase_19 AC 921 ms
63,468 KB
testcase_20 AC 922 ms
63,424 KB
testcase_21 AC 937 ms
63,264 KB
testcase_22 AC 933 ms
63,436 KB
testcase_23 AC 902 ms
63,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Yuki293 extends App{
  def compare(a :String, b:String) :String = {
    if(a.length > b.length) return a
    else if (a.length < b.length) return b

    def compareImpl(x :String, y:String, i:Int) :String = {
      if(i >= x.length) return x
      
      val xi = x.charAt(i).asDigit
      val yi = y.charAt(i).asDigit

      if(xi == 4 && yi == 7) x
      else if(xi == 7 && yi == 4) y
      else if(xi == yi) compareImpl(x, y, i + 1)
      else if(xi >= yi) x
      else y 
    }

    compareImpl(a, b, 0)
  }

  val input = new java.util.Scanner(System.in)
  val a = input.next
  val b = input.next
  val result = compare(a, b)
  println(result)
}
0