結果

問題 No.908 うしたぷにきあくん文字列
ユーザー バカらっくバカらっく
提出日時 2022-02-03 12:35:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 12,300 ms
コンパイル使用メモリ 431,236 KB
実行使用メモリ 51,372 KB
最終ジャッジ日時 2024-06-11 09:48:34
合計ジャッジ時間 17,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
51,172 KB
testcase_01 AC 269 ms
51,080 KB
testcase_02 AC 266 ms
51,224 KB
testcase_03 AC 272 ms
50,964 KB
testcase_04 AC 277 ms
51,372 KB
testcase_05 AC 261 ms
51,124 KB
testcase_06 AC 274 ms
50,948 KB
testcase_07 AC 275 ms
51,168 KB
testcase_08 AC 267 ms
51,264 KB
testcase_09 AC 270 ms
50,972 KB
testcase_10 AC 271 ms
50,952 KB
testcase_11 AC 266 ms
51,088 KB
testcase_12 AC 274 ms
51,044 KB
testcase_13 AC 270 ms
50,952 KB
testcase_14 AC 270 ms
51,136 KB
testcase_15 AC 284 ms
51,168 KB
testcase_16 AC 286 ms
50,952 KB
testcase_17 AC 272 ms
50,956 KB
testcase_18 AC 277 ms
51,356 KB
testcase_19 AC 276 ms
51,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val s = readLine()!!
    val ans = s.indices.all { if(it % 2 == 0) s[it] != ' ' else s[it] == ' '  }
    println(if(ans) "Yes" else "No")
}

0