結果

問題 No.908 うしたぷにきあくん文字列
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-03 23:51:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 9,966 ms
コンパイル使用メモリ 426,680 KB
実行使用メモリ 50,008 KB
最終ジャッジ日時 2024-11-28 00:46:02
合計ジャッジ時間 16,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
49,720 KB
testcase_01 AC 268 ms
49,784 KB
testcase_02 AC 271 ms
49,936 KB
testcase_03 AC 275 ms
49,980 KB
testcase_04 AC 263 ms
49,960 KB
testcase_05 AC 267 ms
49,816 KB
testcase_06 AC 257 ms
49,760 KB
testcase_07 AC 255 ms
49,988 KB
testcase_08 AC 257 ms
49,844 KB
testcase_09 AC 262 ms
49,712 KB
testcase_10 AC 265 ms
49,844 KB
testcase_11 AC 261 ms
49,840 KB
testcase_12 AC 253 ms
49,724 KB
testcase_13 AC 266 ms
49,764 KB
testcase_14 AC 273 ms
50,004 KB
testcase_15 AC 271 ms
49,760 KB
testcase_16 AC 273 ms
49,756 KB
testcase_17 AC 272 ms
49,776 KB
testcase_18 AC 256 ms
50,008 KB
testcase_19 AC 255 ms
50,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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