結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー パカかすみパカかすみ
提出日時 2022-12-05 10:46:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 3,733 ms
コンパイル使用メモリ 88,456 KB
実行使用メモリ 54,580 KB
最終ジャッジ日時 2024-10-12 08:46:25
合計ジャッジ時間 7,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,012 KB
testcase_01 AC 134 ms
53,968 KB
testcase_02 AC 133 ms
54,376 KB
testcase_03 AC 136 ms
53,940 KB
testcase_04 AC 132 ms
54,228 KB
testcase_05 AC 133 ms
54,292 KB
testcase_06 AC 139 ms
53,956 KB
testcase_07 AC 139 ms
53,988 KB
testcase_08 AC 138 ms
54,132 KB
testcase_09 AC 122 ms
53,100 KB
testcase_10 AC 136 ms
54,052 KB
testcase_11 AC 136 ms
54,016 KB
testcase_12 AC 134 ms
54,140 KB
testcase_13 AC 139 ms
53,984 KB
testcase_14 AC 135 ms
54,208 KB
testcase_15 AC 133 ms
53,808 KB
testcase_16 AC 136 ms
53,884 KB
testcase_17 AC 135 ms
53,760 KB
testcase_18 AC 133 ms
54,104 KB
testcase_19 AC 134 ms
54,108 KB
testcase_20 AC 136 ms
54,116 KB
testcase_21 AC 137 ms
54,220 KB
testcase_22 AC 137 ms
54,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class App {
    public static void main(String[] args) throws Exception {
        // System.out.println("Hello, World!");
        // ■標準入力
        // Scannerクラス
        Scanner scanner = new Scanner(System.in);

        // nextLineメソッド
        String s = scanner.nextLine();

        String[] sArray = s.split("");
        List<String> sList = Arrays.asList(sArray);
        List<Integer> sIntList = new ArrayList<>();
        sList.stream().forEach(h -> {
            Integer intS = Integer.valueOf(h);
            sIntList.add(intS);
        });

        int total = sIntList.stream().mapToInt(val -> val).sum();

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