結果

問題 No.289 数字を全て足そう
ユーザー 水野嶺水野嶺
提出日時 2020-05-25 10:59:01
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 704 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-10-13 02:02:04
合計ジャッジ時間 6,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,824 KB
testcase_01 AC 117 ms
41,004 KB
testcase_02 AC 122 ms
41,208 KB
testcase_03 RE -
testcase_04 AC 124 ms
41,028 KB
testcase_05 AC 151 ms
42,516 KB
testcase_06 AC 148 ms
42,552 KB
testcase_07 AC 165 ms
42,516 KB
testcase_08 AC 153 ms
43,108 KB
testcase_09 AC 147 ms
41,948 KB
testcase_10 AC 155 ms
42,468 KB
testcase_11 AC 162 ms
42,100 KB
testcase_12 AC 169 ms
42,640 KB
testcase_13 AC 158 ms
42,352 KB
testcase_14 AC 172 ms
43,004 KB
testcase_15 AC 168 ms
42,468 KB
testcase_16 AC 167 ms
42,948 KB
testcase_17 AC 168 ms
42,744 KB
testcase_18 AC 166 ms
43,008 KB
testcase_19 AC 169 ms
42,224 KB
testcase_20 AC 162 ms
43,492 KB
testcase_21 AC 123 ms
40,992 KB
testcase_22 AC 169 ms
42,872 KB
testcase_23 AC 169 ms
42,300 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]", "");
		
		// 分割してアレイリストに格納
		String[] split = intStr.split("");
		
//		for(int i = 0;i < intStr.length;i++){
		
		//配列の要素をひとつづつfor文でまわす
		for (String str : split) {
			
			// 文字列から数字に変換
			int num = Integer.parseInt(str);
			
			//配列の要素を足していく
			goukei += num;
		}
		System.out.println(goukei);
//		}
	}
}
0