結果

問題 No.289 数字を全て足そう
ユーザー keidenkeiden
提出日時 2024-09-20 18:01:50
言語 Scala(Beta)
(3.4.0)
結果
TLE  
実行時間 -
コード長 173 bytes
コンパイル時間 13,436 ms
コンパイル使用メモリ 272,972 KB
実行使用メモリ 64,632 KB
最終ジャッジ日時 2024-09-20 18:02:29
合計ジャッジ時間 39,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 982 ms
62,828 KB
testcase_02 AC 947 ms
62,888 KB
testcase_03 AC 964 ms
62,500 KB
testcase_04 AC 948 ms
62,972 KB
testcase_05 AC 909 ms
62,816 KB
testcase_06 AC 930 ms
62,744 KB
testcase_07 AC 950 ms
62,688 KB
testcase_08 AC 973 ms
62,804 KB
testcase_09 AC 972 ms
62,728 KB
testcase_10 AC 970 ms
62,576 KB
testcase_11 AC 957 ms
62,736 KB
testcase_12 AC 985 ms
64,596 KB
testcase_13 AC 963 ms
64,528 KB
testcase_14 AC 964 ms
64,540 KB
testcase_15 AC 941 ms
64,632 KB
testcase_16 AC 994 ms
62,728 KB
testcase_17 AC 971 ms
62,772 KB
testcase_18 AC 989 ms
64,348 KB
testcase_19 TLE -
testcase_20 AC 998 ms
62,880 KB
testcase_21 AC 933 ms
62,900 KB
testcase_22 AC 949 ms
62,732 KB
testcase_23 AC 982 ms
64,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


@main
def yuki289(): Unit =
    readLine
    .filter(_.isDigit)
    .map(_.asDigit)
    .sum
    .pipe(println)
0