結果

問題 No.289 数字を全て足そう
ユーザー keidenkeiden
提出日時 2024-09-20 18:06:53
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 930 ms / 1,000 ms
コード長 207 bytes
コンパイル時間 9,879 ms
コンパイル使用メモリ 277,788 KB
実行使用メモリ 66,248 KB
最終ジャッジ日時 2024-09-20 18:07:30
合計ジャッジ時間 30,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 883 ms
65,200 KB
testcase_01 AC 871 ms
65,036 KB
testcase_02 AC 860 ms
65,208 KB
testcase_03 AC 862 ms
65,008 KB
testcase_04 AC 873 ms
64,916 KB
testcase_05 AC 898 ms
65,236 KB
testcase_06 AC 876 ms
65,232 KB
testcase_07 AC 923 ms
65,108 KB
testcase_08 AC 918 ms
65,316 KB
testcase_09 AC 854 ms
65,116 KB
testcase_10 AC 895 ms
65,308 KB
testcase_11 AC 896 ms
65,092 KB
testcase_12 AC 885 ms
65,392 KB
testcase_13 AC 874 ms
66,248 KB
testcase_14 AC 892 ms
65,456 KB
testcase_15 AC 877 ms
65,124 KB
testcase_16 AC 854 ms
65,344 KB
testcase_17 AC 889 ms
65,228 KB
testcase_18 AC 899 ms
65,152 KB
testcase_19 AC 930 ms
65,080 KB
testcase_20 AC 879 ms
65,296 KB
testcase_21 AC 871 ms
65,228 KB
testcase_22 AC 908 ms
65,176 KB
testcase_23 AC 901 ms
65,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
import scala.io.StdIn.readLine
import scala.util.chaining._


@main
def yuki289(): Unit =
    val s = Scanner(System.in)
    s.next.filter(_.isDigit).map(_.asDigit).sum.pipe(println)
0