結果

問題 No.908 うしたぷにきあくん文字列
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-03 23:50:16
言語 Kotlin
(1.9.10)
結果
WA  
実行時間 -
コード長 89 bytes
コンパイル時間 12,971 ms
コンパイル使用メモリ 407,524 KB
実行使用メモリ 52,484 KB
最終ジャッジ日時 2023-08-18 17:47:43
合計ジャッジ時間 18,229 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 239 ms
50,196 KB
testcase_02 AC 232 ms
50,368 KB
testcase_03 WA -
testcase_04 AC 232 ms
50,152 KB
testcase_05 AC 243 ms
50,452 KB
testcase_06 AC 238 ms
50,292 KB
testcase_07 AC 233 ms
50,096 KB
testcase_08 AC 230 ms
50,136 KB
testcase_09 AC 236 ms
50,324 KB
testcase_10 AC 232 ms
50,192 KB
testcase_11 WA -
testcase_12 AC 232 ms
50,524 KB
testcase_13 WA -
testcase_14 AC 233 ms
50,344 KB
testcase_15 WA -
testcase_16 AC 235 ms
50,224 KB
testcase_17 WA -
testcase_18 AC 235 ms
50,200 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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