結果

問題 No.791 うし数列
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-06 17:24:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 10,669 ms
コンパイル使用メモリ 428,236 KB
実行使用メモリ 50,028 KB
最終ジャッジ日時 2024-06-06 01:10:25
合計ジャッジ時間 16,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
49,828 KB
testcase_01 AC 293 ms
49,712 KB
testcase_02 AC 299 ms
49,844 KB
testcase_03 AC 297 ms
49,756 KB
testcase_04 AC 296 ms
49,880 KB
testcase_05 AC 296 ms
49,744 KB
testcase_06 AC 292 ms
49,636 KB
testcase_07 AC 293 ms
49,752 KB
testcase_08 AC 296 ms
49,836 KB
testcase_09 AC 294 ms
49,616 KB
testcase_10 AC 291 ms
49,724 KB
testcase_11 AC 290 ms
49,864 KB
testcase_12 AC 298 ms
49,884 KB
testcase_13 AC 298 ms
49,900 KB
testcase_14 AC 298 ms
50,028 KB
testcase_15 AC 298 ms
49,956 KB
testcase_16 AC 298 ms
49,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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