結果

問題 No.656 ゴルフ
ユーザー misk703misk703
提出日時 2018-05-09 10:05:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 4,239 ms
コンパイル使用メモリ 77,512 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-06-28 02:38:50
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,188 KB
testcase_01 AC 125 ms
40,888 KB
testcase_02 AC 124 ms
41,336 KB
testcase_03 AC 128 ms
41,172 KB
testcase_04 AC 128 ms
41,196 KB
testcase_05 AC 125 ms
41,132 KB
testcase_06 AC 112 ms
41,272 KB
testcase_07 AC 129 ms
41,120 KB
testcase_08 AC 125 ms
40,916 KB
testcase_09 AC 125 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class golf {

    public static void main(String[] args) {
	String s ;
	Scanner scanner = new Scanner(System.in);

	s = scanner.nextLine();
	int S = Integer.parseInt(s);
	int total = 0;
	int score;
	for(int i=0;i<9;i++){
	    if((score = S % 10) == 0){
		score = 10;
	    }
	    S /= 10;
	    total += score;
	}
	System.out.println(total);
    }

}
0