結果

問題 No.292 芸名
ユーザー minokasagominokasago
提出日時 2019-11-01 10:44:04
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 14,043 ms
コンパイル使用メモリ 435,236 KB
実行使用メモリ 51,004 KB
最終ジャッジ日時 2024-09-14 22:34:45
合計ジャッジ時間 17,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
50,996 KB
testcase_01 AC 301 ms
50,872 KB
testcase_02 AC 301 ms
50,868 KB
testcase_03 AC 301 ms
50,852 KB
testcase_04 AC 301 ms
50,740 KB
testcase_05 AC 301 ms
50,876 KB
testcase_06 AC 300 ms
50,992 KB
testcase_07 AC 300 ms
50,900 KB
testcase_08 AC 303 ms
50,736 KB
testcase_09 AC 300 ms
51,004 KB
testcase_10 AC 299 ms
50,844 KB
testcase_11 AC 301 ms
50,780 KB
testcase_12 AC 305 ms
50,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:7:38: warning: parameter 'c' is never used, could be renamed to _
    val ans = S.filterIndexed() { i, c -> i != t && i != u }
                                     ^

ソースコード

diff #

fun main()
{
    val (S, _t, _u) = readLine()!!.split(" ")
    val t = _t.toInt()
    val u = _u.toInt()

    val ans = S.filterIndexed() { i, c -> i != t && i != u }

    println("${ans}")
}

0