結果

問題 No.656 ゴルフ
ユーザー yamax3232yamax3232
提出日時 2018-03-14 10:53:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 1,779 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-05-04 20:50:40
合計ジャッジ時間 3,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,264 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 96 ms
40,028 KB
testcase_05 AC 99 ms
41,340 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		int sum=0;
		Scanner kb=new Scanner(System.in);
		String s=kb.nextLine();
		for(int i=0;i<s.length();i++){
			sum+=Character.getNumericValue(s.charAt(i));		
		}
		System.out.println(sum);

	}

}
0