結果

問題 No.791 うし数列
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-06 17:24:59
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 12,140 ms
コンパイル使用メモリ 421,280 KB
実行使用メモリ 50,084 KB
最終ジャッジ日時 2024-12-23 11:53:05
合計ジャッジ時間 16,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
49,680 KB
testcase_01 AC 251 ms
49,704 KB
testcase_02 AC 263 ms
49,924 KB
testcase_03 AC 259 ms
49,488 KB
testcase_04 AC 275 ms
50,048 KB
testcase_05 AC 261 ms
49,720 KB
testcase_06 AC 264 ms
50,028 KB
testcase_07 AC 265 ms
49,740 KB
testcase_08 AC 261 ms
49,824 KB
testcase_09 AC 257 ms
49,868 KB
testcase_10 AC 259 ms
49,752 KB
testcase_11 AC 291 ms
49,672 KB
testcase_12 AC 290 ms
49,696 KB
testcase_13 AC 288 ms
49,828 KB
testcase_14 AC 287 ms
49,980 KB
testcase_15 AC 300 ms
50,084 KB
testcase_16 AC 291 ms
49,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    println(Regex("^13+$").find(readLine()!!)?.value?.length?.minus(1) ?: -1)
}
0