結果

問題 No.656 ゴルフ
ユーザー yamax3232yamax3232
提出日時 2018-03-14 10:47:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 79,888 KB
実行使用メモリ 41,992 KB
最終ジャッジ日時 2024-05-04 20:32:51
合計ジャッジ時間 3,496 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
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();
		int a[]=new int[s.length()];
		for(int i=0;i<s.length();i++){
			a[i]=Integer.parseInt(s.substring(i));
		}
		for(int i=0;i<s.length();i++){
			sum+=a[i];
		}
		System.out.println(sum);

	}

}
0