結果

問題 No.509 塗りつぶしツール
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-27 21:57:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 13,435 ms
コンパイル使用メモリ 439,956 KB
実行使用メモリ 60,440 KB
最終ジャッジ日時 2024-11-20 10:40:23
合計ジャッジ時間 23,247 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
60,416 KB
testcase_01 AC 332 ms
60,324 KB
testcase_02 AC 332 ms
60,420 KB
testcase_03 AC 332 ms
60,296 KB
testcase_04 AC 330 ms
60,272 KB
testcase_05 AC 325 ms
60,260 KB
testcase_06 AC 335 ms
60,132 KB
testcase_07 AC 332 ms
60,400 KB
testcase_08 AC 329 ms
60,160 KB
testcase_09 AC 331 ms
60,268 KB
testcase_10 AC 331 ms
60,320 KB
testcase_11 AC 329 ms
60,220 KB
testcase_12 AC 335 ms
60,296 KB
testcase_13 AC 325 ms
60,280 KB
testcase_14 AC 328 ms
60,236 KB
testcase_15 AC 331 ms
60,424 KB
testcase_16 AC 332 ms
60,184 KB
testcase_17 AC 327 ms
60,160 KB
testcase_18 AC 337 ms
60,348 KB
testcase_19 AC 334 ms
60,280 KB
testcase_20 AC 325 ms
60,220 KB
testcase_21 AC 328 ms
60,440 KB
testcase_22 AC 332 ms
60,212 KB
testcase_23 AC 330 ms
60,160 KB
testcase_24 AC 328 ms
60,268 KB
testcase_25 AC 332 ms
60,316 KB
testcase_26 AC 324 ms
60,216 KB
testcase_27 AC 331 ms
60,256 KB
testcase_28 AC 336 ms
60,168 KB
testcase_29 AC 331 ms
60,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

fun main( args : Array<String> ) {
   val m  = mapOf(0 to 1, 1 to 0, 2 to 0, 3 to 0, 4 to 1, 5 to 0, 6 to 1, 7 to 0, 8 to 2, 9 to 1)
   val txt = readLine()!!
   val an = txt.toList()
            .map { it.toString().toInt() }
            .map { x -> 
              m[x]!!.toInt() 
            }.reduce { y,x ->
              y+x
            }
   val inn = 1 + an + 2 * txt.length
   val ou  = 2 * ( 1 + an) + txt.length
   println( listOf(inn,ou).min() )
}
0