結果

問題 No.791 うし数列
ユーザー バカらっくバカらっく
提出日時 2022-02-03 12:30:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 8,964 ms
コンパイル使用メモリ 425,172 KB
実行使用メモリ 51,464 KB
最終ジャッジ日時 2024-06-11 09:47:56
合計ジャッジ時間 14,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
51,164 KB
testcase_01 AC 258 ms
51,244 KB
testcase_02 AC 259 ms
51,464 KB
testcase_03 AC 264 ms
51,148 KB
testcase_04 AC 257 ms
51,224 KB
testcase_05 AC 263 ms
51,076 KB
testcase_06 AC 256 ms
51,092 KB
testcase_07 AC 266 ms
51,312 KB
testcase_08 AC 261 ms
51,456 KB
testcase_09 AC 265 ms
51,352 KB
testcase_10 AC 261 ms
51,296 KB
testcase_11 AC 265 ms
51,316 KB
testcase_12 AC 263 ms
51,356 KB
testcase_13 AC 260 ms
51,188 KB
testcase_14 AC 258 ms
51,148 KB
testcase_15 AC 260 ms
51,304 KB
testcase_16 AC 254 ms
51,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    println(getAns())
}

fun getAns():Int {
    val n = readLine()!!
    if(n.first() != '1') {
        return -1
    }
    val tmp = n.drop(1)
    if(tmp.isEmpty()) {
        return -1
    }
    if(tmp.all { it == '3' }) {
        return tmp.length
    }
    return -1
}
0