結果

問題 No.289 数字を全て足そう
ユーザー yamax3232yamax3232
提出日時 2017-02-10 17:47:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 544 bytes
コンパイル時間 3,307 ms
コンパイル使用メモリ 76,176 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-06-08 02:42:54
合計ジャッジ時間 7,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,040 KB
testcase_01 AC 119 ms
41,152 KB
testcase_02 AC 121 ms
40,868 KB
testcase_03 AC 118 ms
40,828 KB
testcase_04 AC 115 ms
40,992 KB
testcase_05 AC 126 ms
41,256 KB
testcase_06 AC 119 ms
40,936 KB
testcase_07 AC 137 ms
41,128 KB
testcase_08 AC 134 ms
41,340 KB
testcase_09 AC 123 ms
41,260 KB
testcase_10 AC 119 ms
40,348 KB
testcase_11 AC 120 ms
41,168 KB
testcase_12 AC 137 ms
41,220 KB
testcase_13 AC 116 ms
40,164 KB
testcase_14 AC 135 ms
41,364 KB
testcase_15 AC 143 ms
41,264 KB
testcase_16 AC 131 ms
41,276 KB
testcase_17 AC 132 ms
41,168 KB
testcase_18 AC 121 ms
40,988 KB
testcase_19 AC 133 ms
41,112 KB
testcase_20 AC 124 ms
40,056 KB
testcase_21 AC 117 ms
41,284 KB
testcase_22 AC 135 ms
41,192 KB
testcase_23 AC 141 ms
40,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class PlusAll {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
String a=kb.next();
int sum=0;
int n;
for(int i=0;i<a.length();i++){
	if(a.charAt(i)=='1'||
			a.charAt(i)=='2'||
			a.charAt(i)=='3'||
			a.charAt(i)=='4'||
			a.charAt(i)=='5'||
			a.charAt(i)=='6'||
			a.charAt(i)=='7'||
			a.charAt(i)=='8'||
			a.charAt(i)=='9'){
		n=Integer.parseInt(""+a.charAt(i));
		sum+=n;
	}
}
System.out.printf("%d\n", sum);
	}

}
0