結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー 箱星箱星
提出日時 2021-08-11 01:12:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,381 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 13,148 ms
コンパイル使用メモリ 434,576 KB
実行使用メモリ 109,788 KB
最終ジャッジ日時 2024-10-07 08:49:09
合計ジャッジ時間 49,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
52,656 KB
testcase_01 AC 328 ms
52,332 KB
testcase_02 AC 323 ms
52,584 KB
testcase_03 AC 321 ms
52,604 KB
testcase_04 AC 321 ms
52,560 KB
testcase_05 AC 318 ms
52,560 KB
testcase_06 AC 323 ms
52,436 KB
testcase_07 AC 328 ms
52,496 KB
testcase_08 AC 325 ms
52,508 KB
testcase_09 AC 324 ms
52,312 KB
testcase_10 AC 324 ms
52,224 KB
testcase_11 AC 338 ms
52,640 KB
testcase_12 AC 333 ms
52,556 KB
testcase_13 AC 336 ms
52,764 KB
testcase_14 AC 342 ms
52,848 KB
testcase_15 AC 338 ms
52,856 KB
testcase_16 AC 1,033 ms
96,492 KB
testcase_17 AC 1,315 ms
108,608 KB
testcase_18 AC 1,083 ms
103,180 KB
testcase_19 AC 747 ms
88,312 KB
testcase_20 AC 770 ms
88,476 KB
testcase_21 AC 1,336 ms
109,272 KB
testcase_22 AC 1,381 ms
109,616 KB
testcase_23 AC 1,256 ms
109,148 KB
testcase_24 AC 1,352 ms
109,660 KB
testcase_25 AC 1,321 ms
109,288 KB
testcase_26 AC 1,265 ms
109,788 KB
testcase_27 AC 1,260 ms
109,552 KB
testcase_28 AC 1,259 ms
109,568 KB
testcase_29 AC 1,302 ms
109,276 KB
testcase_30 AC 1,370 ms
109,656 KB
testcase_31 AC 1,236 ms
109,388 KB
testcase_32 AC 987 ms
94,016 KB
testcase_33 AC 992 ms
89,828 KB
testcase_34 AC 1,022 ms
93,876 KB
testcase_35 AC 992 ms
89,900 KB
testcase_36 AC 318 ms
52,156 KB
testcase_37 AC 318 ms
52,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val k = nextInt()
    val a = Array(n) { nextInt() }
    val b = Array(n) { nextInt() }
    val lst = (0 until n).sortedByDescending { a[it] - b[it] }.take(k)
    val choice = BooleanArray(n) { false }
    lst.forEach { choice[it] = true }
    println(choice.map { if (it) 'A' else 'B' }.joinToString(""))
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0