結果

問題 No.1020 Reverse
ユーザー da_louisda_louis
提出日時 2020-04-10 21:41:51
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 12,802 ms
コンパイル使用メモリ 436,684 KB
実行使用メモリ 56,008 KB
最終ジャッジ日時 2024-09-15 19:45:23
合計ジャッジ時間 20,767 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
52,044 KB
testcase_01 AC 315 ms
51,752 KB
testcase_02 AC 315 ms
51,520 KB
testcase_03 WA -
testcase_04 AC 318 ms
51,980 KB
testcase_05 AC 325 ms
52,132 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 440 ms
55,452 KB
testcase_09 AC 431 ms
55,172 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 440 ms
55,652 KB
testcase_13 AC 435 ms
55,732 KB
testcase_14 WA -
testcase_15 AC 439 ms
55,156 KB
testcase_16 AC 440 ms
55,224 KB
testcase_17 AC 441 ms
56,008 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)

    println(answer)
}
0