結果

問題 No.785 色食い虫
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-10 17:47:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 12,131 ms
コンパイル使用メモリ 435,068 KB
実行使用メモリ 55,656 KB
最終ジャッジ日時 2024-11-20 18:25:57
合計ジャッジ時間 24,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
55,416 KB
testcase_01 AC 355 ms
55,616 KB
testcase_02 AC 353 ms
55,412 KB
testcase_03 AC 355 ms
55,640 KB
testcase_04 AC 373 ms
55,592 KB
testcase_05 AC 360 ms
55,400 KB
testcase_06 AC 358 ms
55,436 KB
testcase_07 AC 357 ms
55,536 KB
testcase_08 AC 361 ms
55,648 KB
testcase_09 AC 356 ms
55,324 KB
testcase_10 AC 363 ms
55,384 KB
testcase_11 AC 357 ms
55,308 KB
testcase_12 AC 365 ms
55,432 KB
testcase_13 AC 360 ms
55,400 KB
testcase_14 AC 363 ms
55,404 KB
testcase_15 AC 360 ms
55,376 KB
testcase_16 AC 359 ms
55,656 KB
testcase_17 AC 359 ms
55,516 KB
testcase_18 AC 359 ms
55,312 KB
testcase_19 AC 360 ms
55,264 KB
testcase_20 AC 372 ms
55,428 KB
testcase_21 AC 364 ms
55,260 KB
testcase_22 AC 361 ms
55,284 KB
testcase_23 AC 361 ms
55,308 KB
testcase_24 AC 362 ms
55,404 KB
testcase_25 AC 360 ms
55,260 KB
testcase_26 AC 361 ms
55,512 KB
testcase_27 AC 366 ms
55,364 KB
testcase_28 AC 364 ms
55,596 KB
testcase_29 AC 361 ms
55,440 KB
testcase_30 AC 322 ms
50,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