結果

問題 No.908 うしたぷにきあくん文字列
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-03 23:50:16
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 89 bytes
コンパイル時間 9,654 ms
コンパイル使用メモリ 427,052 KB
実行使用メモリ 50,044 KB
最終ジャッジ日時 2024-11-28 00:44:02
合計ジャッジ時間 16,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 292 ms
49,652 KB
testcase_02 AC 300 ms
49,908 KB
testcase_03 WA -
testcase_04 AC 276 ms
49,756 KB
testcase_05 AC 285 ms
49,848 KB
testcase_06 AC 294 ms
49,632 KB
testcase_07 AC 285 ms
49,752 KB
testcase_08 AC 282 ms
49,808 KB
testcase_09 AC 280 ms
49,672 KB
testcase_10 AC 293 ms
49,884 KB
testcase_11 WA -
testcase_12 AC 293 ms
49,860 KB
testcase_13 WA -
testcase_14 AC 285 ms
49,672 KB
testcase_15 WA -
testcase_16 AC 289 ms
49,688 KB
testcase_17 WA -
testcase_18 AC 291 ms
49,788 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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