結果

問題 No.785 色食い虫
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-10 17:47:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 11,516 ms
コンパイル使用メモリ 430,504 KB
実行使用メモリ 60,464 KB
最終ジャッジ日時 2024-04-30 20:35:50
合計ジャッジ時間 23,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
60,348 KB
testcase_01 AC 340 ms
60,360 KB
testcase_02 AC 332 ms
60,236 KB
testcase_03 AC 328 ms
60,388 KB
testcase_04 AC 331 ms
60,408 KB
testcase_05 AC 332 ms
60,244 KB
testcase_06 AC 328 ms
60,308 KB
testcase_07 AC 328 ms
60,352 KB
testcase_08 AC 330 ms
60,408 KB
testcase_09 AC 339 ms
60,408 KB
testcase_10 AC 343 ms
60,300 KB
testcase_11 AC 332 ms
60,316 KB
testcase_12 AC 332 ms
60,324 KB
testcase_13 AC 328 ms
60,356 KB
testcase_14 AC 328 ms
60,368 KB
testcase_15 AC 332 ms
60,240 KB
testcase_16 AC 337 ms
60,456 KB
testcase_17 AC 337 ms
60,464 KB
testcase_18 AC 338 ms
60,236 KB
testcase_19 AC 330 ms
60,444 KB
testcase_20 AC 333 ms
60,276 KB
testcase_21 AC 344 ms
60,340 KB
testcase_22 AC 336 ms
60,308 KB
testcase_23 AC 345 ms
60,424 KB
testcase_24 AC 339 ms
60,432 KB
testcase_25 AC 332 ms
60,292 KB
testcase_26 AC 332 ms
60,336 KB
testcase_27 AC 339 ms
60,228 KB
testcase_28 AC 350 ms
60,316 KB
testcase_29 AC 343 ms
60,372 KB
testcase_30 AC 299 ms
56,756 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:6:39: warning: unnecessary non-null assertion (!!) on a non-null receiver of type String
            val pat = (default - input!!.split(",").toSet()).size
                                      ^

ソースコード

diff #

fun main(args:Array<String>) {
    (1..3).map {
        val input = readLine()!!
        if( input != "NONE") {
            val default = listOf("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F").toSet()
            val pat = (default - input!!.split(",").toSet()).size
            pat*pat
        } else {
            256
        }
    }.reduce { effect, it ->
        effect * it
    }.let { println(it) }
}
0