結果

問題 No.656 ゴルフ
ユーザー prog470prog470
提出日時 2018-05-17 10:57:19
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 808 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 6,981 ms
コンパイル使用メモリ 251,984 KB
実行使用メモリ 64,680 KB
最終ジャッジ日時 2024-06-30 07:01:01
合計ジャッジ時間 16,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 765 ms
64,556 KB
testcase_01 AC 768 ms
64,612 KB
testcase_02 AC 783 ms
64,620 KB
testcase_03 AC 794 ms
64,428 KB
testcase_04 AC 784 ms
64,680 KB
testcase_05 AC 780 ms
64,392 KB
testcase_06 AC 808 ms
64,472 KB
testcase_07 AC 797 ms
64,660 KB
testcase_08 AC 785 ms
64,288 KB
testcase_09 AC 788 ms
64,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    var ans = 0

    for(e <- S) {
      e match {
        case 0 => ans += 10
        case _ => ans += e
      }
    }

    println(ans)
  }

}
0