結果

問題 No.656 ゴルフ
ユーザー fal_rndfal_rnd
提出日時 2018-03-16 15:19:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 76,656 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-06-01 09:26:24
合計ジャッジ時間 4,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,592 KB
testcase_01 AC 131 ms
40,896 KB
testcase_02 AC 134 ms
41,100 KB
testcase_03 AC 135 ms
41,132 KB
testcase_04 AC 134 ms
41,400 KB
testcase_05 AC 130 ms
41,596 KB
testcase_06 AC 132 ms
41,136 KB
testcase_07 AC 132 ms
41,600 KB
testcase_08 AC 132 ms
40,944 KB
testcase_09 AC 133 ms
41,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s=new Scanner(System.in);

	public static void main(String[] $){
		System.out.println(s.next().chars().map(o->o=='0'?10:o-'0').sum());
	}
}
0