結果

問題 No.289 数字を全て足そう
ユーザー ぴろずぴろず
提出日時 2015-10-17 15:31:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 245 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 86,356 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-10-07 20:22:30
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,920 KB
testcase_01 AC 118 ms
53,856 KB
testcase_02 AC 119 ms
54,120 KB
testcase_03 AC 103 ms
52,976 KB
testcase_04 AC 107 ms
52,992 KB
testcase_05 AC 125 ms
54,108 KB
testcase_06 AC 129 ms
53,716 KB
testcase_07 AC 140 ms
54,108 KB
testcase_08 AC 128 ms
53,732 KB
testcase_09 AC 124 ms
54,008 KB
testcase_10 AC 117 ms
53,176 KB
testcase_11 AC 142 ms
53,984 KB
testcase_12 AC 126 ms
53,244 KB
testcase_13 AC 132 ms
54,140 KB
testcase_14 AC 121 ms
53,212 KB
testcase_15 AC 140 ms
54,128 KB
testcase_16 AC 138 ms
54,060 KB
testcase_17 AC 130 ms
53,268 KB
testcase_18 AC 142 ms
54,088 KB
testcase_19 AC 127 ms
53,404 KB
testcase_20 AC 145 ms
54,088 KB
testcase_21 AC 124 ms
53,988 KB
testcase_22 AC 145 ms
53,892 KB
testcase_23 AC 124 ms
53,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no289;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println(sc.next().chars().filter(Character::isDigit).map(x -> (x - '0')).sum());
	}

}
0