結果

問題 No.671 1000000007
ユーザー prog470prog470
提出日時 2018-05-17 10:13:37
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 775 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 6,997 ms
コンパイル使用メモリ 256,992 KB
実行使用メモリ 64,252 KB
最終ジャッジ日時 2024-06-30 06:55:41
合計ジャッジ時間 17,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 756 ms
64,076 KB
testcase_01 AC 761 ms
64,140 KB
testcase_02 AC 768 ms
64,224 KB
testcase_03 AC 768 ms
64,164 KB
testcase_04 AC 769 ms
64,168 KB
testcase_05 AC 765 ms
64,172 KB
testcase_06 AC 762 ms
64,080 KB
testcase_07 AC 750 ms
64,248 KB
testcase_08 AC 763 ms
64,184 KB
testcase_09 AC 775 ms
64,252 KB
testcase_10 AC 773 ms
64,040 KB
testcase_11 AC 759 ms
64,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.math._

object HelloScala {
  def main(args: Array[String]): Unit = {
    val in = io.StdIn.readLine().split("")

    var cnt = 0

    for (e <- in){
      e match {
        case "0" => cnt += 1
        case _ =>
      }
    }

    println(abs(cnt - 8))

  }
}
0