結果

問題 No.1020 Reverse
ユーザー da_louisda_louis
提出日時 2020-04-10 21:48:10
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 13,033 ms
コンパイル使用メモリ 436,852 KB
実行使用メモリ 56,056 KB
最終ジャッジ日時 2024-09-15 20:07:27
合計ジャッジ時間 21,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 315 ms
51,960 KB
testcase_02 AC 325 ms
51,724 KB
testcase_03 WA -
testcase_04 AC 315 ms
51,988 KB
testcase_05 WA -
testcase_06 AC 320 ms
51,952 KB
testcase_07 WA -
testcase_08 AC 442 ms
55,548 KB
testcase_09 WA -
testcase_10 AC 443 ms
55,712 KB
testcase_11 WA -
testcase_12 AC 440 ms
55,364 KB
testcase_13 WA -
testcase_14 AC 447 ms
55,856 KB
testcase_15 AC 430 ms
55,232 KB
testcase_16 AC 432 ms
55,008 KB
testcase_17 AC 432 ms
56,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) = p1020()
         ^

ソースコード

diff #

fun main(args: Array<String>) = p1020()

fun p1020() {
    val (n, k) = readLine()!!.split(' ').map { it.toInt() }
    val s = readLine()!!

    if (n == k) return println(s.reversed())

    val answer = s.drop(k - 1) + s.take(k - 1).let { if (k % 2 == 0) it else it.reversed() }

    println(answer)
}
0