結果

問題 No.289 数字を全て足そう
ユーザー 水野嶺水野嶺
提出日時 2020-05-25 11:06:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 688 bytes
コンパイル時間 1,853 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 44,024 KB
最終ジャッジ日時 2024-10-13 02:02:15
合計ジャッジ時間 6,191 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,116 KB
testcase_01 AC 106 ms
40,084 KB
testcase_02 AC 101 ms
41,036 KB
testcase_03 AC 106 ms
40,128 KB
testcase_04 AC 100 ms
41,008 KB
testcase_05 AC 141 ms
42,088 KB
testcase_06 AC 135 ms
42,512 KB
testcase_07 AC 148 ms
42,332 KB
testcase_08 AC 147 ms
42,876 KB
testcase_09 AC 142 ms
42,772 KB
testcase_10 AC 142 ms
42,776 KB
testcase_11 AC 151 ms
42,320 KB
testcase_12 AC 145 ms
43,356 KB
testcase_13 AC 153 ms
42,568 KB
testcase_14 AC 155 ms
42,372 KB
testcase_15 AC 153 ms
42,868 KB
testcase_16 AC 144 ms
42,740 KB
testcase_17 AC 153 ms
42,624 KB
testcase_18 AC 154 ms
44,024 KB
testcase_19 AC 143 ms
42,344 KB
testcase_20 AC 149 ms
42,232 KB
testcase_21 AC 120 ms
41,236 KB
testcase_22 AC 164 ms
41,892 KB
testcase_23 AC 160 ms
42,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int goukei = 0;
		
		// 数字以外を除去
		String intStr = s.replaceAll("[^0-9]", "");
		
		if(!(intStr.equals(""))){
		
		// 分割してアレイリストに格納
		String[] split = intStr.split("");
		
		//配列の要素をひとつづつfor文でまわす
		for (String str : split) {
			
			// 文字列から数字に変換
			int num = Integer.parseInt(str);
			
			//配列の要素を足していく
			goukei += num;
		}
		}
		System.out.println(goukei);
	}
}
0