結果

問題 No.164 ちっちゃくないよ!!
ユーザー くわいくわい
提出日時 2015-09-24 23:33:11
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,146 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 9,663 ms
コンパイル使用メモリ 262,236 KB
実行使用メモリ 66,384 KB
最終ジャッジ日時 2024-06-29 03:36:10
合計ジャッジ時間 23,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 982 ms
65,664 KB
testcase_01 AC 940 ms
65,332 KB
testcase_02 AC 934 ms
65,428 KB
testcase_03 AC 935 ms
65,548 KB
testcase_04 AC 932 ms
65,728 KB
testcase_05 AC 1,124 ms
66,384 KB
testcase_06 AC 1,146 ms
66,288 KB
testcase_07 AC 1,021 ms
65,772 KB
testcase_08 AC 1,111 ms
66,248 KB
testcase_09 AC 1,105 ms
66,260 KB
testcase_10 AC 962 ms
65,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Problem164 {

  def charToLongValue(c: Char): Long = {
    c match {
      case x if x < 58 => x.asDigit // [0-9] -> 0..9
      case x => x - 65 + 10 // [a-z] -> 10..35
    }
  }

  def calcDecimalValue(s: String): Long = {
    val longs = s.map(charToLongValue)
    val decimal = longs.max + 1 // 0-indexの最大数値を進数に変換
    longs.foldLeft(0L)((a, b) => a * decimal + b)
  }

  def proc(numbers: Seq[String]): Long = {
    numbers.map(calcDecimalValue).min
  }

  def main(args: Array[String]): Unit = {
    val sc = new Scanner(System.in)
    val n = sc.next.toInt
    val v = Seq.fill(n)(sc.next)

    val result = proc(v)
    println(result)
  }
}
0