結果
問題 | No.656 ゴルフ |
ユーザー | GB |
提出日時 | 2018-04-23 12:27:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 396 bytes |
コンパイル時間 | 2,134 ms |
コンパイル使用メモリ | 73,408 KB |
実行使用メモリ | 37,088 KB |
最終ジャッジ日時 | 2024-06-27 14:04:11 |
合計ジャッジ時間 | 3,338 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
36,988 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 49 ms
36,864 KB |
testcase_05 | AC | 52 ms
36,932 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import java.io.*; import java.util.*; import java.lang.*; class Main{ public static void main(String[] args) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String n=br.readLine(); int sum=0; for(int i=0;i<n.length();i++){ int x=Character.getNumericValue(n.charAt(i)); sum+=x; } System.out.println(sum); } }