結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー tentententen
提出日時 2022-09-28 14:11:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 729 ms / 2,000 ms
コード長 2,099 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 78,508 KB
実行使用メモリ 83,392 KB
最終ジャッジ日時 2024-06-02 01:31:07
合計ジャッジ時間 20,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,468 KB
testcase_01 AC 47 ms
50,324 KB
testcase_02 AC 49 ms
50,452 KB
testcase_03 AC 48 ms
50,604 KB
testcase_04 AC 48 ms
50,424 KB
testcase_05 AC 48 ms
50,480 KB
testcase_06 AC 48 ms
50,476 KB
testcase_07 AC 50 ms
50,184 KB
testcase_08 AC 49 ms
50,276 KB
testcase_09 AC 49 ms
50,328 KB
testcase_10 AC 50 ms
50,516 KB
testcase_11 AC 68 ms
51,072 KB
testcase_12 AC 53 ms
50,624 KB
testcase_13 AC 75 ms
51,356 KB
testcase_14 AC 79 ms
51,468 KB
testcase_15 AC 57 ms
50,308 KB
testcase_16 AC 438 ms
64,872 KB
testcase_17 AC 669 ms
81,204 KB
testcase_18 AC 487 ms
69,760 KB
testcase_19 AC 336 ms
60,440 KB
testcase_20 AC 347 ms
60,392 KB
testcase_21 AC 713 ms
83,288 KB
testcase_22 AC 690 ms
83,248 KB
testcase_23 AC 703 ms
83,324 KB
testcase_24 AC 725 ms
79,252 KB
testcase_25 AC 666 ms
78,604 KB
testcase_26 AC 673 ms
83,292 KB
testcase_27 AC 713 ms
79,048 KB
testcase_28 AC 705 ms
79,596 KB
testcase_29 AC 698 ms
83,328 KB
testcase_30 AC 718 ms
79,096 KB
testcase_31 AC 729 ms
83,392 KB
testcase_32 AC 508 ms
83,228 KB
testcase_33 AC 506 ms
83,048 KB
testcase_34 AC 515 ms
83,024 KB
testcase_35 AC 520 ms
83,088 KB
testcase_36 AC 47 ms
50,288 KB
testcase_37 AC 51 ms
50,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        Product[] products = new Product[n];
        for (int i = 0; i < n; i++) {
            products[i] = new Product(i, sc.nextInt());
        }
        for (int i = 0; i < n; i++) {
            products[i].b = sc.nextInt();
        }
        Arrays.sort(products);
        for (int i = 0; i < k; i++) {
            products[i].isA = true;
        }
        char[] ans = new char[n];
        for (Product x : products) {
            if (x.isA) {
                ans[x.idx] = 'A';
            } else {
                ans[x.idx] = 'B';
            }
        }
        System.out.println(ans);
    }
    
    static class Product implements Comparable<Product> {
        int idx;
        int a;
        int b;
        boolean isA;
        
        public Product(int idx, int a) {
            this.idx = idx;
            this.a = a;
        }
        
        public int compareTo(Product another) {
            if (b - a == another.b - another.a) {
                return 0;
            } else if (b - a < another.b - another.a) {
                return -1;
            } else {
                return 1;
            }
        }
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0