結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー tentententen
提出日時 2022-09-28 14:11:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 2,099 bytes
コンパイル時間 2,329 ms
コンパイル使用メモリ 77,884 KB
実行使用メモリ 71,156 KB
最終ジャッジ日時 2024-12-22 17:32:25
合計ジャッジ時間 24,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
36,920 KB
testcase_01 AC 57 ms
37,100 KB
testcase_02 AC 57 ms
36,644 KB
testcase_03 AC 56 ms
36,752 KB
testcase_04 AC 55 ms
36,840 KB
testcase_05 AC 57 ms
36,644 KB
testcase_06 AC 56 ms
36,776 KB
testcase_07 AC 58 ms
37,060 KB
testcase_08 AC 57 ms
36,784 KB
testcase_09 AC 57 ms
37,228 KB
testcase_10 AC 59 ms
37,232 KB
testcase_11 AC 76 ms
37,800 KB
testcase_12 AC 68 ms
37,296 KB
testcase_13 AC 84 ms
37,840 KB
testcase_14 AC 78 ms
38,248 KB
testcase_15 AC 68 ms
37,128 KB
testcase_16 AC 471 ms
53,868 KB
testcase_17 AC 794 ms
70,760 KB
testcase_18 AC 649 ms
59,864 KB
testcase_19 AC 394 ms
49,932 KB
testcase_20 AC 388 ms
50,052 KB
testcase_21 AC 842 ms
71,156 KB
testcase_22 AC 997 ms
66,528 KB
testcase_23 AC 872 ms
67,552 KB
testcase_24 AC 831 ms
66,580 KB
testcase_25 AC 867 ms
66,828 KB
testcase_26 AC 894 ms
66,724 KB
testcase_27 AC 894 ms
71,072 KB
testcase_28 AC 804 ms
71,120 KB
testcase_29 AC 832 ms
66,488 KB
testcase_30 AC 846 ms
66,716 KB
testcase_31 AC 865 ms
70,984 KB
testcase_32 AC 562 ms
70,488 KB
testcase_33 AC 566 ms
66,384 KB
testcase_34 AC 670 ms
70,820 KB
testcase_35 AC 587 ms
70,900 KB
testcase_36 AC 56 ms
37,152 KB
testcase_37 AC 57 ms
37,092 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