結果

問題 No.289 数字を全て足そう
ユーザー SuunnSuunn
提出日時 2018-11-22 09:15:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 346 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-06-06 21:44:22
合計ジャッジ時間 5,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,260 KB
testcase_01 AC 118 ms
40,784 KB
testcase_02 AC 120 ms
40,528 KB
testcase_03 AC 117 ms
41,012 KB
testcase_04 AC 117 ms
40,812 KB
testcase_05 AC 123 ms
40,876 KB
testcase_06 AC 109 ms
39,712 KB
testcase_07 AC 133 ms
40,760 KB
testcase_08 AC 117 ms
39,808 KB
testcase_09 AC 108 ms
39,496 KB
testcase_10 AC 128 ms
41,392 KB
testcase_11 AC 134 ms
40,636 KB
testcase_12 AC 130 ms
41,100 KB
testcase_13 AC 111 ms
39,828 KB
testcase_14 AC 134 ms
40,800 KB
testcase_15 AC 121 ms
40,024 KB
testcase_16 AC 128 ms
40,700 KB
testcase_17 AC 129 ms
40,984 KB
testcase_18 AC 133 ms
41,252 KB
testcase_19 AC 124 ms
41,032 KB
testcase_20 AC 125 ms
40,744 KB
testcase_21 AC 121 ms
40,956 KB
testcase_22 AC 121 ms
39,592 KB
testcase_23 AC 137 ms
40,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		Scanner sc = new Scanner(System.in);

		String S = sc.next();
		int L = S.length();
		int ans = 0;
		for(int i=0;i<L;i++){
			char c = S.charAt(i);
			if('1'<=c&&c<='9'){
				ans += c-'1'+1;
			}
		}
		System.out.println(ans);
	}
	

}
0