結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー yudedakoyudedako
提出日時 2022-01-25 13:39:14
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 389 bytes
コンパイル時間 14,878 ms
コンパイル使用メモリ 261,484 KB
実行使用メモリ 106,900 KB
最終ジャッジ日時 2024-11-08 11:26:37
合計ジャッジ時間 78,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 928 ms
63,484 KB
testcase_01 AC 938 ms
63,388 KB
testcase_02 AC 936 ms
63,572 KB
testcase_03 AC 932 ms
63,476 KB
testcase_04 AC 936 ms
63,508 KB
testcase_05 AC 937 ms
63,552 KB
testcase_06 AC 941 ms
63,372 KB
testcase_07 AC 950 ms
63,484 KB
testcase_08 AC 946 ms
63,368 KB
testcase_09 AC 949 ms
63,472 KB
testcase_10 AC 944 ms
63,700 KB
testcase_11 AC 982 ms
63,624 KB
testcase_12 AC 965 ms
63,636 KB
testcase_13 AC 979 ms
63,392 KB
testcase_14 AC 970 ms
63,460 KB
testcase_15 AC 947 ms
63,660 KB
testcase_16 AC 1,713 ms
82,940 KB
testcase_17 TLE -
testcase_18 AC 1,888 ms
92,252 KB
testcase_19 AC 1,419 ms
72,332 KB
testcase_20 AC 1,499 ms
74,448 KB
testcase_21 TLE -
testcase_22 AC 1,931 ms
106,136 KB
testcase_23 AC 1,951 ms
106,180 KB
testcase_24 AC 1,887 ms
105,064 KB
testcase_25 AC 1,884 ms
106,740 KB
testcase_26 AC 1,964 ms
106,024 KB
testcase_27 AC 1,938 ms
105,204 KB
testcase_28 AC 1,913 ms
106,252 KB
testcase_29 AC 1,954 ms
106,084 KB
testcase_30 AC 1,970 ms
106,140 KB
testcase_31 AC 1,860 ms
105,812 KB
testcase_32 AC 1,668 ms
104,752 KB
testcase_33 AC 1,676 ms
104,568 KB
testcase_34 AC 1,674 ms
106,100 KB
testcase_35 AC 1,691 ms
104,972 KB
testcase_36 AC 944 ms
63,552 KB
testcase_37 AC 940 ms
63,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn.*




@main def main =
  val Array(n, k) = readLine().split(' ').map(_.toInt)
  val a = readLine().split(' ').map(_.toLong)
  val b = readLine().split(' ').map(_.toLong)
  val result = Array.fill(n){'B'}
  for i <- (0 until n).sortWith{(i, j) => (a(j) - b(j)) < (a(i) - b(i))}.take(k) do
    result(i) = 'A'
  println(result.mkString)
0