結果

問題 No.932 解法破綻!高橋君
ユーザー komkomhkomkomh
提出日時 2020-01-26 11:59:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 10,849 ms
コンパイル使用メモリ 412,452 KB
実行使用メモリ 57,744 KB
最終ジャッジ日時 2023-10-12 12:01:22
合計ジャッジ時間 18,762 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
53,032 KB
testcase_01 AC 289 ms
53,108 KB
testcase_02 AC 279 ms
52,784 KB
testcase_03 AC 275 ms
52,908 KB
testcase_04 AC 274 ms
53,068 KB
testcase_05 AC 276 ms
52,732 KB
testcase_06 AC 274 ms
52,824 KB
testcase_07 AC 275 ms
53,168 KB
testcase_08 AC 278 ms
52,820 KB
testcase_09 AC 287 ms
52,720 KB
testcase_10 AC 282 ms
52,936 KB
testcase_11 AC 283 ms
52,884 KB
testcase_12 AC 289 ms
52,880 KB
testcase_13 AC 290 ms
52,980 KB
testcase_14 AC 292 ms
52,888 KB
testcase_15 AC 279 ms
52,836 KB
testcase_16 AC 295 ms
52,912 KB
testcase_17 AC 440 ms
57,736 KB
testcase_18 AC 424 ms
57,680 KB
testcase_19 AC 420 ms
57,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val s: List<String> = readLine()!!.split(",")
    val ans = when(s.all { it == "AC" }) {
        true -> "Done!"
        false -> "Failed..."
    }
    println(ans)
}
0