結果

問題 No.656 ゴルフ
コンテスト
ユーザー ichibanshibori
提出日時 2018-04-29 19:07:09
言語 Kotlin
(2.3.20)
コンパイル:
kotlinc _filename_ -include-runtime -d main.jar
実行:
kotlin main.jar
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 164 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 8,007 ms
コンパイル使用メモリ 461,852 KB
実行使用メモリ 52,252 KB
最終ジャッジ日時 2026-05-14 18:29:39
合計ジャッジ時間 10,767 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:5:24: warning: redundant call of conversion method.
	    .map { (it - '0').toInt() }
                       ^^^^^^^

ソースコード

diff #
raw source code

fun main(args : Array<String>) {
	val S = readLine() ?: ""
	
	val a = S
	    .map { (it - '0').toInt() }
		.map { if (it == 0) 10 else it }
		.sum()
	
	println(a)
}
0