結果

問題 No.791 うし数列
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 16:15:20
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 9,905 ms
コンパイル使用メモリ 427,464 KB
実行使用メモリ 57,140 KB
最終ジャッジ日時 2024-11-20 18:19:32
合計ジャッジ時間 16,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
56,888 KB
testcase_01 AC 280 ms
57,024 KB
testcase_02 WA -
testcase_03 AC 287 ms
56,884 KB
testcase_04 AC 282 ms
56,908 KB
testcase_05 AC 284 ms
56,860 KB
testcase_06 AC 286 ms
56,988 KB
testcase_07 AC 276 ms
57,016 KB
testcase_08 AC 277 ms
56,976 KB
testcase_09 AC 287 ms
57,112 KB
testcase_10 AC 283 ms
57,032 KB
testcase_11 AC 290 ms
57,132 KB
testcase_12 AC 304 ms
57,140 KB
testcase_13 AC 286 ms
57,020 KB
testcase_14 AC 289 ms
56,908 KB
testcase_15 AC 290 ms
56,960 KB
testcase_16 AC 281 ms
57,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    val ml = readLine()!!.toList().map { it.toString().toInt() }.toMutableList()
    val head = ml[0]
    ml.removeAt(0)
    when {
        head == 1 && ml.all { it == 3 } -> ml.size
        else ->  -1
    }.let { println(it) }
}
0