結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー shinwisteriashinwisteria
提出日時 2017-05-04 22:38:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 3,010 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 41,184 KB
最終ジャッジ日時 2024-10-13 20:07:31
合計ジャッジ時間 6,412 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,376 KB
testcase_01 AC 112 ms
40,984 KB
testcase_02 AC 110 ms
40,248 KB
testcase_03 AC 102 ms
39,828 KB
testcase_04 AC 107 ms
39,868 KB
testcase_05 AC 112 ms
41,184 KB
testcase_06 AC 112 ms
41,088 KB
testcase_07 AC 109 ms
40,728 KB
testcase_08 AC 118 ms
40,840 KB
testcase_09 AC 101 ms
39,128 KB
testcase_10 AC 110 ms
40,840 KB
testcase_11 AC 112 ms
40,596 KB
testcase_12 AC 114 ms
40,664 KB
testcase_13 AC 112 ms
41,052 KB
testcase_14 AC 117 ms
41,164 KB
testcase_15 AC 115 ms
40,932 KB
testcase_16 AC 113 ms
39,872 KB
testcase_17 AC 101 ms
39,880 KB
testcase_18 AC 113 ms
41,040 KB
testcase_19 AC 106 ms
39,956 KB
testcase_20 AC 116 ms
40,976 KB
testcase_21 AC 98 ms
40,024 KB
testcase_22 AC 114 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Allsum {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String S = s.nextLine();
		s.close();
		int sum = 0;
		for(int i = 0;i < S.length();i++){
			sum += Integer.parseInt(S.substring(i, i+1));
		}
		System.out.println(sum);

	}

}
0