結果

問題 No.791 うし数列
ユーザー ktgw0316ktgw0316
提出日時 2019-04-08 21:55:00
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 11,369 ms
コンパイル使用メモリ 425,928 KB
実行使用メモリ 49,956 KB
最終ジャッジ日時 2024-11-20 17:57:30
合計ジャッジ時間 15,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
49,840 KB
testcase_01 AC 259 ms
49,620 KB
testcase_02 WA -
testcase_03 AC 253 ms
49,956 KB
testcase_04 AC 255 ms
49,744 KB
testcase_05 AC 253 ms
49,864 KB
testcase_06 AC 250 ms
49,524 KB
testcase_07 AC 256 ms
49,508 KB
testcase_08 AC 250 ms
49,524 KB
testcase_09 AC 248 ms
49,644 KB
testcase_10 AC 251 ms
49,572 KB
testcase_11 AC 251 ms
49,532 KB
testcase_12 AC 252 ms
49,524 KB
testcase_13 AC 248 ms
49,868 KB
testcase_14 AC 247 ms
49,512 KB
testcase_15 AC 248 ms
49,520 KB
testcase_16 AC 256 ms
49,764 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 {
    if (N[0] != '1') return -1
    val i = N.count {it == '3'}
    return if (i == N.length - 1) i else -1
}
0