結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー ウップス600ウップス600
提出日時 2022-01-04 20:43:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 41,184 KB
最終ジャッジ日時 2024-10-14 16:44:46
合計ジャッジ時間 5,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,892 KB
testcase_01 AC 109 ms
40,476 KB
testcase_02 AC 103 ms
39,840 KB
testcase_03 AC 123 ms
40,560 KB
testcase_04 AC 125 ms
40,908 KB
testcase_05 AC 112 ms
40,528 KB
testcase_06 AC 111 ms
40,784 KB
testcase_07 AC 113 ms
40,776 KB
testcase_08 AC 100 ms
39,468 KB
testcase_09 AC 112 ms
40,900 KB
testcase_10 AC 117 ms
40,812 KB
testcase_11 AC 114 ms
40,548 KB
testcase_12 AC 101 ms
39,448 KB
testcase_13 AC 115 ms
40,768 KB
testcase_14 AC 111 ms
40,440 KB
testcase_15 AC 113 ms
40,424 KB
testcase_16 AC 120 ms
41,184 KB
testcase_17 AC 118 ms
40,796 KB
testcase_18 AC 114 ms
40,468 KB
testcase_19 AC 131 ms
40,408 KB
testcase_20 AC 103 ms
39,420 KB
testcase_21 AC 124 ms
40,696 KB
testcase_22 AC 114 ms
40,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java. util. Scanner;

public class Main{
	public static void main (String[] args){
		Scanner scanner = new Scanner (System. in);
		
		String number = scanner. next();
		
		int x = 0;
		String[] count = number. split ("");
		
		for (int j = 0; j < number. length(); j ++){
			Integer a = Integer. parseInt (count[j]);
			x += a;
		}
		System. out. println (x);
	}
}
0