結果
問題 | No.892 タピオカ |
ユーザー | minokasago |
提出日時 | 2019-10-31 17:38:15 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 315 ms / 1,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 10,920 ms |
コンパイル使用メモリ | 435,408 KB |
実行使用メモリ | 51,820 KB |
最終ジャッジ日時 | 2024-09-14 22:06:50 |
合計ジャッジ時間 | 14,606 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 308 ms
51,816 KB |
testcase_01 | AC | 311 ms
51,696 KB |
testcase_02 | AC | 310 ms
51,676 KB |
testcase_03 | AC | 305 ms
51,808 KB |
testcase_04 | AC | 310 ms
51,800 KB |
testcase_05 | AC | 313 ms
51,820 KB |
testcase_06 | AC | 315 ms
51,648 KB |
testcase_07 | AC | 310 ms
51,816 KB |
testcase_08 | AC | 313 ms
51,820 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args: Array<String>) ^ Main.kt:5:31: warning: parameter 'v' is never used, could be renamed to _ if (ab.filterIndexed { i, v -> i%2==0 }.sum() % 2 == 0) { ^
ソースコード
fun main(args: Array<String>) { val ab: List<Int> = readLine()!!.split(" ").map { it.toInt() } if (ab.filterIndexed { i, v -> i%2==0 }.sum() % 2 == 0) { println(":-)") } else { println(":-(") } }