結果

問題 No.289 数字を全て足そう
ユーザー fukuseifukusei
提出日時 2017-05-17 16:01:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 1,000 ms
コード長 333 bytes
コンパイル時間 3,648 ms
コンパイル使用メモリ 76,216 KB
実行使用メモリ 42,768 KB
最終ジャッジ日時 2024-09-17 20:59:16
合計ジャッジ時間 8,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,032 KB
testcase_01 AC 114 ms
39,928 KB
testcase_02 AC 127 ms
41,096 KB
testcase_03 AC 124 ms
41,112 KB
testcase_04 AC 123 ms
41,384 KB
testcase_05 AC 153 ms
42,248 KB
testcase_06 AC 142 ms
41,592 KB
testcase_07 AC 168 ms
42,620 KB
testcase_08 AC 174 ms
41,820 KB
testcase_09 AC 142 ms
41,744 KB
testcase_10 AC 162 ms
41,984 KB
testcase_11 AC 170 ms
42,236 KB
testcase_12 AC 171 ms
41,956 KB
testcase_13 AC 167 ms
42,664 KB
testcase_14 AC 158 ms
41,892 KB
testcase_15 AC 162 ms
42,768 KB
testcase_16 AC 167 ms
42,376 KB
testcase_17 AC 166 ms
42,392 KB
testcase_18 AC 171 ms
42,264 KB
testcase_19 AC 162 ms
42,244 KB
testcase_20 AC 165 ms
42,208 KB
testcase_21 AC 114 ms
40,028 KB
testcase_22 AC 175 ms
42,516 KB
testcase_23 AC 159 ms
41,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 

public class test {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		String str = sc.next();
		String a = str.replaceAll("[^0-9]","");
		int sum = 0;
		
		for(int i=0; i<a.length(); i++ ){
			sum = sum + Integer.parseInt("" + a.charAt(i));
		}
		System.out.println(sum);
	}
}
0