結果

問題 No.313 π
ユーザー くわいくわい
提出日時 2015-12-10 01:00:17
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,098 ms / 5,000 ms
コード長 641 bytes
コンパイル時間 9,965 ms
コンパイル使用メモリ 268,380 KB
実行使用メモリ 66,832 KB
最終ジャッジ日時 2024-06-29 12:13:43
合計ジャッジ時間 49,329 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,062 ms
66,480 KB
testcase_01 AC 1,063 ms
66,520 KB
testcase_02 AC 1,057 ms
66,456 KB
testcase_03 AC 1,051 ms
66,500 KB
testcase_04 AC 1,052 ms
66,524 KB
testcase_05 AC 1,052 ms
66,832 KB
testcase_06 AC 1,055 ms
66,440 KB
testcase_07 AC 1,077 ms
66,544 KB
testcase_08 AC 1,068 ms
66,756 KB
testcase_09 AC 1,074 ms
66,712 KB
testcase_10 AC 1,057 ms
66,304 KB
testcase_11 AC 1,064 ms
66,512 KB
testcase_12 AC 1,061 ms
66,624 KB
testcase_13 AC 1,060 ms
66,760 KB
testcase_14 AC 1,050 ms
66,596 KB
testcase_15 AC 1,063 ms
66,720 KB
testcase_16 AC 1,060 ms
66,548 KB
testcase_17 AC 1,070 ms
66,808 KB
testcase_18 AC 1,051 ms
66,556 KB
testcase_19 AC 1,059 ms
66,800 KB
testcase_20 AC 1,060 ms
66,620 KB
testcase_21 AC 1,059 ms
66,536 KB
testcase_22 AC 1,051 ms
66,528 KB
testcase_23 AC 1,054 ms
66,524 KB
testcase_24 AC 1,051 ms
66,460 KB
testcase_25 AC 1,084 ms
66,744 KB
testcase_26 AC 1,066 ms
66,496 KB
testcase_27 AC 1,061 ms
66,620 KB
testcase_28 AC 1,063 ms
66,592 KB
testcase_29 AC 1,098 ms
66,576 KB
testcase_30 AC 1,053 ms
66,344 KB
testcase_31 AC 1,051 ms
66,592 KB
testcase_32 AC 1,048 ms
66,580 KB
testcase_33 AC 1,054 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Main extends App {

  val c = Map(
    '1' -> 20063,
    '2' -> 19892,
    '3' -> 20011,
    '4' -> 19874,
    '5' -> 20199,
    '6' -> 19898,
    '7' -> 20163,
    '8' -> 19956,
    '9' -> 19841,
    '0' -> 20104,
    '.' -> 1
  )

  def proc(pi: String): (Int, Int) = {
    val charCounts = pi.groupBy(identity).map(x => x._1 -> x._2.length)

    val wrong = charCounts.find(x => c(x._1) < x._2).get._1.asDigit
    val right = charCounts.find(x => c(x._1) > x._2).get._1.asDigit
    (wrong, right)
  }

  val pi = StdIn.readLine()

  val result: (Int, Int) = proc(pi)
  println(result._1 + " " + result._2)
}
0