結果

問題 No.313 π
ユーザー koba-e964koba-e964
提出日時 2015-12-09 11:41:44
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,117 ms / 5,000 ms
コード長 561 bytes
コンパイル時間 9,133 ms
コンパイル使用メモリ 269,984 KB
実行使用メモリ 66,208 KB
最終ジャッジ日時 2024-06-29 12:08:51
合計ジャッジ時間 49,616 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,111 ms
66,208 KB
testcase_01 AC 1,094 ms
65,780 KB
testcase_02 AC 1,089 ms
65,732 KB
testcase_03 AC 1,087 ms
66,008 KB
testcase_04 AC 1,108 ms
65,724 KB
testcase_05 AC 1,103 ms
65,788 KB
testcase_06 AC 1,087 ms
66,092 KB
testcase_07 AC 1,077 ms
66,084 KB
testcase_08 AC 1,085 ms
66,048 KB
testcase_09 AC 1,094 ms
65,968 KB
testcase_10 AC 1,089 ms
65,676 KB
testcase_11 AC 1,088 ms
65,936 KB
testcase_12 AC 1,082 ms
65,988 KB
testcase_13 AC 1,085 ms
65,664 KB
testcase_14 AC 1,102 ms
65,968 KB
testcase_15 AC 1,095 ms
66,064 KB
testcase_16 AC 1,089 ms
66,076 KB
testcase_17 AC 1,087 ms
65,892 KB
testcase_18 AC 1,100 ms
65,932 KB
testcase_19 AC 1,088 ms
65,916 KB
testcase_20 AC 1,081 ms
65,824 KB
testcase_21 AC 1,094 ms
65,900 KB
testcase_22 AC 1,074 ms
65,684 KB
testcase_23 AC 1,102 ms
66,032 KB
testcase_24 AC 1,107 ms
65,708 KB
testcase_25 AC 1,107 ms
65,704 KB
testcase_26 AC 1,110 ms
65,740 KB
testcase_27 AC 1,091 ms
65,948 KB
testcase_28 AC 1,094 ms
66,064 KB
testcase_29 AC 1,090 ms
66,200 KB
testcase_30 AC 1,091 ms
65,732 KB
testcase_31 AC 1,098 ms
66,080 KB
testcase_32 AC 1,117 ms
66,072 KB
testcase_33 AC 1,106 ms
65,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
 * Reference: http://lizan.asia/blog/2012/12/11/scala-competitive/
 */

object Main extends App {
  import java.{util => ju}
  import scala.annotation._
  import scala.collection._
  import scala.collection.{mutable => mu}
  import scala.collection.JavaConverters._
  import scala.math._

  val sc = new ju.Scanner(System.in)
  val dig = sc.next
  val ans = Array(20104, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841)
  val diff = Array.tabulate(10){x => dig.count(_ == x + '0') - ans(x)}
  println(diff.indexOf(1) + " " + diff.indexOf(-1))
}
0