結果

問題 No.932 解法破綻!高橋君
ユーザー ichibanshiboriichibanshibori
提出日時 2020-01-05 02:05:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 14,293 ms
コンパイル使用メモリ 429,596 KB
実行使用メモリ 53,880 KB
最終ジャッジ日時 2024-11-22 21:53:21
合計ジャッジ時間 19,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
49,896 KB
testcase_01 AC 282 ms
49,796 KB
testcase_02 AC 279 ms
49,592 KB
testcase_03 AC 288 ms
49,820 KB
testcase_04 AC 281 ms
49,636 KB
testcase_05 AC 284 ms
49,592 KB
testcase_06 AC 278 ms
49,636 KB
testcase_07 AC 283 ms
49,808 KB
testcase_08 AC 283 ms
49,644 KB
testcase_09 AC 282 ms
49,704 KB
testcase_10 AC 274 ms
49,528 KB
testcase_11 AC 280 ms
49,724 KB
testcase_12 AC 289 ms
49,600 KB
testcase_13 AC 294 ms
49,628 KB
testcase_14 AC 288 ms
49,824 KB
testcase_15 AC 285 ms
49,752 KB
testcase_16 AC 301 ms
49,736 KB
testcase_17 AC 409 ms
53,880 KB
testcase_18 AC 389 ms
53,532 KB
testcase_19 AC 394 ms
53,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) =
         ^

ソースコード

diff #

fun main(args: Array<String>) =
    (readLine() ?: "").let {
        solve(it)
    }.let {
        if (it) "Done!" else "Failed..."
    }.let {
        println(it)
    }

fun solve(str: String) =
    (str.length).let { len ->
        if (len % 3 != 2) {
            false
        }
        else {
            (0..(len - 1)).all {
                when (it % 3) {
                    0 -> str[it] == 'A'
                    1 -> str[it] == 'C'
                    2 -> str[it] == ','
                    else -> throw RuntimeException()
                }
            }
        }
    }
0