結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー 鹿鹿
提出日時 2021-04-07 21:52:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 3,444 ms
コンパイル使用メモリ 73,520 KB
実行使用メモリ 37,060 KB
最終ジャッジ日時 2024-06-23 02:03:52
合計ジャッジ時間 5,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,644 KB
testcase_01 AC 48 ms
36,784 KB
testcase_02 AC 49 ms
36,908 KB
testcase_03 AC 51 ms
36,920 KB
testcase_04 AC 52 ms
36,780 KB
testcase_05 AC 52 ms
36,772 KB
testcase_06 AC 52 ms
36,440 KB
testcase_07 AC 53 ms
36,856 KB
testcase_08 AC 50 ms
36,740 KB
testcase_09 AC 52 ms
36,572 KB
testcase_10 AC 51 ms
36,440 KB
testcase_11 AC 51 ms
36,904 KB
testcase_12 AC 50 ms
36,916 KB
testcase_13 AC 51 ms
36,920 KB
testcase_14 AC 50 ms
36,816 KB
testcase_15 AC 50 ms
36,884 KB
testcase_16 AC 50 ms
36,564 KB
testcase_17 AC 50 ms
36,596 KB
testcase_18 AC 49 ms
36,584 KB
testcase_19 AC 50 ms
36,816 KB
testcase_20 AC 50 ms
37,060 KB
testcase_21 AC 51 ms
36,544 KB
testcase_22 AC 52 ms
36,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Sum {
	public static void main (String[] args) throws IOException{
		try (BufferedReader in = new BufferedReader(new InputStreamReader(System.in))){
			
			String numString = new String(in.readLine());
			in.close();
			
			String[] array = numString.split("");
			 int sum = 0;
			 
			 for (int i = 0; i < numString.length(); i++){
			 	sum += Integer.parseInt(array[i]);
			 }
			 
			 System.out.println(sum);
			
		} catch (IOException e){
			// 例外
		}
	}
}			
0