結果

問題 No.791 うし数列
ユーザー ktgw0316ktgw0316
提出日時 2019-04-08 22:06:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 12,583 ms
コンパイル使用メモリ 434,636 KB
実行使用メモリ 49,892 KB
最終ジャッジ日時 2024-11-20 17:57:58
合計ジャッジ時間 17,289 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
49,620 KB
testcase_01 AC 299 ms
49,612 KB
testcase_02 AC 296 ms
49,564 KB
testcase_03 AC 296 ms
49,548 KB
testcase_04 AC 310 ms
49,856 KB
testcase_05 AC 300 ms
49,856 KB
testcase_06 AC 297 ms
49,828 KB
testcase_07 AC 298 ms
49,892 KB
testcase_08 AC 299 ms
49,520 KB
testcase_09 AC 297 ms
49,536 KB
testcase_10 AC 299 ms
49,512 KB
testcase_11 AC 298 ms
49,704 KB
testcase_12 AC 301 ms
49,636 KB
testcase_13 AC 302 ms
49,588 KB
testcase_14 AC 307 ms
49,736 KB
testcase_15 AC 303 ms
49,512 KB
testcase_16 AC 301 ms
49,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:6:1: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
inline fun ushi(N: String): Int {
^

ソースコード

diff #

fun main(args: Array<String>) {
    val N = readLine()!!
    println(ushi(N))
}

inline fun ushi(N: String): Int {
    val len = N.length
    if (len <= 1 || N[0] != '1') return -1
    val i = N.count {it == '3'}
    return if (i == len - 1) i else -1
}
0