結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー パカかすみパカかすみ
提出日時 2022-12-05 11:08:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 6,215 ms
コンパイル使用メモリ 79,276 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-10-12 09:05:38
合計ジャッジ時間 8,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,944 KB
testcase_01 AC 135 ms
54,112 KB
testcase_02 AC 133 ms
53,972 KB
testcase_03 AC 137 ms
54,212 KB
testcase_04 AC 131 ms
53,948 KB
testcase_05 AC 133 ms
54,036 KB
testcase_06 AC 134 ms
54,100 KB
testcase_07 AC 133 ms
54,188 KB
testcase_08 AC 133 ms
54,144 KB
testcase_09 AC 134 ms
54,352 KB
testcase_10 AC 137 ms
54,080 KB
testcase_11 AC 133 ms
53,864 KB
testcase_12 AC 135 ms
54,156 KB
testcase_13 AC 135 ms
53,888 KB
testcase_14 AC 132 ms
54,068 KB
testcase_15 AC 134 ms
54,220 KB
testcase_16 AC 133 ms
54,080 KB
testcase_17 AC 135 ms
53,884 KB
testcase_18 AC 134 ms
54,416 KB
testcase_19 AC 134 ms
54,476 KB
testcase_20 AC 134 ms
54,132 KB
testcase_21 AC 134 ms
54,084 KB
testcase_22 AC 135 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

public class App {
    public static void main(String[] args) throws Exception {
        // yukicorder No.9011 数字を全て足そう(数字だけ)

        Scanner scanner = new Scanner(System.in);
        String s = scanner.nextLine();
        scanner.close();

        List<String> sList = Arrays.asList(s.split(""));
        int total = sList.stream().mapToInt(Integer::parseInt).sum();

        System.out.println(total);
    }
}
0