結果

問題 No.908 うしたぷにきあくん文字列
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-03 23:51:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 11,477 ms
コンパイル使用メモリ 411,628 KB
実行使用メモリ 50,680 KB
最終ジャッジ日時 2023-08-18 17:49:34
合計ジャッジ時間 16,539 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
50,360 KB
testcase_01 AC 234 ms
50,172 KB
testcase_02 AC 237 ms
50,376 KB
testcase_03 AC 241 ms
50,316 KB
testcase_04 AC 258 ms
50,260 KB
testcase_05 AC 286 ms
50,364 KB
testcase_06 AC 284 ms
50,368 KB
testcase_07 AC 286 ms
50,680 KB
testcase_08 AC 283 ms
50,200 KB
testcase_09 AC 287 ms
50,272 KB
testcase_10 AC 288 ms
50,244 KB
testcase_11 AC 236 ms
50,312 KB
testcase_12 AC 238 ms
50,096 KB
testcase_13 AC 235 ms
50,336 KB
testcase_14 AC 234 ms
50,308 KB
testcase_15 AC 234 ms
50,428 KB
testcase_16 AC 235 ms
50,240 KB
testcase_17 AC 235 ms
50,396 KB
testcase_18 AC 240 ms
50,528 KB
testcase_19 AC 234 ms
50,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    println(if (Regex("([a-z] )+[a-z]").matches(readLine()!!)) "Yes" else "No")
}
0