結果

問題 No.656 ゴルフ
ユーザー bennkei0327bennkei0327
提出日時 2018-03-03 07:11:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 37,184 KB
最終ジャッジ日時 2024-06-23 09:02:27
合計ジャッジ時間 3,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,136 KB
testcase_01 AC 44 ms
36,676 KB
testcase_02 AC 45 ms
36,712 KB
testcase_03 AC 43 ms
36,844 KB
testcase_04 AC 43 ms
36,956 KB
testcase_05 AC 43 ms
37,084 KB
testcase_06 AC 46 ms
36,864 KB
testcase_07 AC 47 ms
37,184 KB
testcase_08 AC 44 ms
37,096 KB
testcase_09 AC 42 ms
37,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class N656{
    public static void main(String args[])throws IOException  {

      String in;

      InputStreamReader is = new InputStreamReader(System.in);       //(1)
      BufferedReader br = new BufferedReader(is);                    //(2)
      in = br.readLine();

      int sum = 0;
      for(int i = 0; i < 9; i++){
        String c = in.substring(i,i+1);

        if(c.equals("0")){
          sum += 10;
        }else{
          sum += Integer.parseInt(c);
        }
      }
      System.out.println(sum);
    }
}
0