結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 15:29:53
言語 Kotlin
(1.9.23)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 115 bytes
コンパイル時間 11,650 ms
コンパイル使用メモリ 444,724 KB
実行使用メモリ 51,824 KB
最終ジャッジ日時 2024-09-15 04:32:50
合計ジャッジ時間 22,175 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
51,516 KB
testcase_01 RE -
testcase_02 AC 312 ms
51,484 KB
testcase_03 AC 314 ms
51,480 KB
testcase_04 AC 313 ms
51,824 KB
testcase_05 AC 315 ms
51,176 KB
testcase_06 AC 314 ms
51,620 KB
testcase_07 AC 312 ms
51,328 KB
testcase_08 AC 305 ms
51,208 KB
testcase_09 AC 307 ms
51,464 KB
testcase_10 AC 311 ms
51,060 KB
testcase_11 AC 307 ms
51,536 KB
testcase_12 AC 308 ms
51,368 KB
testcase_13 AC 310 ms
51,272 KB
testcase_14 AC 308 ms
51,736 KB
testcase_15 AC 308 ms
51,560 KB
testcase_16 AC 312 ms
51,288 KB
testcase_17 AC 309 ms
51,656 KB
testcase_18 AC 308 ms
51,592 KB
testcase_19 AC 310 ms
51,120 KB
testcase_20 AC 315 ms
51,772 KB
testcase_21 AC 330 ms
51,444 KB
testcase_22 AC 316 ms
51,572 KB
testcase_23 AC 314 ms
51,424 KB
testcase_24 AC 314 ms
51,792 KB
testcase_25 AC 315 ms
51,032 KB
testcase_26 AC 315 ms
51,284 KB
testcase_27 AC 323 ms
51,448 KB
testcase_28 AC 323 ms
51,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:111: warning: elvis operator (?:) always returns the left operand of non-nullable type Int
fun main(){println((readLine()!!+readLine()!!).split("x").filter{it.isNotEmpty()}.map{it.count{it=='o'}}.max()?:0)}
                                                                                                              ^

ソースコード

diff #

fun main(){println((readLine()!!+readLine()!!).split("x").filter{it.isNotEmpty()}.map{it.count{it=='o'}}.max()?:0)}
0