結果

問題 No.293 4>7の世界
ユーザー 5h0t4r05h0t4r0
提出日時 2015-11-02 16:21:49
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 8,649 ms
コンパイル使用メモリ 261,548 KB
実行使用メモリ 63,748 KB
最終ジャッジ日時 2024-06-29 04:26:35
合計ジャッジ時間 33,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 950 ms
63,668 KB
testcase_01 AC 946 ms
63,508 KB
testcase_02 AC 956 ms
63,468 KB
testcase_03 WA -
testcase_04 AC 948 ms
63,508 KB
testcase_05 WA -
testcase_06 AC 947 ms
63,616 KB
testcase_07 AC 939 ms
63,680 KB
testcase_08 AC 934 ms
63,744 KB
testcase_09 WA -
testcase_10 AC 950 ms
63,644 KB
testcase_11 AC 947 ms
63,528 KB
testcase_12 AC 948 ms
63,412 KB
testcase_13 AC 923 ms
63,452 KB
testcase_14 AC 946 ms
63,456 KB
testcase_15 WA -
testcase_16 AC 952 ms
63,716 KB
testcase_17 AC 956 ms
63,432 KB
testcase_18 AC 951 ms
63,456 KB
testcase_19 AC 951 ms
63,416 KB
testcase_20 AC 948 ms
63,748 KB
testcase_21 AC 937 ms
63,620 KB
testcase_22 AC 938 ms
63,512 KB
testcase_23 AC 948 ms
63,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Yuki293 extends App{
  val input = new java.util.Scanner(System.in)
  val a = input.next
  val b = input.next

  def convert(s :String) :String = s.map{ c => 
   c match {
    case '7' => '4'
    case '4' => '7'
    case x   => x
   }
  }.mkString

  val ai = convert(a).toInt
  val bi = convert(b).toInt

  val result = if(ai >= bi) a else b

  println(result)
}
0