結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー tentententen
提出日時 2021-11-01 15:24:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 847 ms / 2,000 ms
コード長 1,922 bytes
コンパイル時間 2,381 ms
コンパイル使用メモリ 77,496 KB
実行使用メモリ 79,296 KB
最終ジャッジ日時 2024-10-10 04:52:03
合計ジャッジ時間 24,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,400 KB
testcase_01 AC 52 ms
50,232 KB
testcase_02 AC 51 ms
50,112 KB
testcase_03 AC 51 ms
49,980 KB
testcase_04 AC 51 ms
50,080 KB
testcase_05 AC 51 ms
50,200 KB
testcase_06 AC 53 ms
50,476 KB
testcase_07 AC 54 ms
50,468 KB
testcase_08 AC 53 ms
50,564 KB
testcase_09 AC 52 ms
50,408 KB
testcase_10 AC 53 ms
50,384 KB
testcase_11 AC 79 ms
51,596 KB
testcase_12 AC 58 ms
50,404 KB
testcase_13 AC 78 ms
51,408 KB
testcase_14 AC 84 ms
51,744 KB
testcase_15 AC 60 ms
50,632 KB
testcase_16 AC 533 ms
64,428 KB
testcase_17 AC 699 ms
77,904 KB
testcase_18 AC 602 ms
58,120 KB
testcase_19 AC 362 ms
59,588 KB
testcase_20 AC 366 ms
59,836 KB
testcase_21 AC 776 ms
79,296 KB
testcase_22 AC 739 ms
68,268 KB
testcase_23 AC 755 ms
68,028 KB
testcase_24 AC 743 ms
65,768 KB
testcase_25 AC 847 ms
68,280 KB
testcase_26 AC 768 ms
68,040 KB
testcase_27 AC 834 ms
68,076 KB
testcase_28 AC 711 ms
68,256 KB
testcase_29 AC 793 ms
68,380 KB
testcase_30 AC 842 ms
66,188 KB
testcase_31 AC 707 ms
68,184 KB
testcase_32 AC 478 ms
67,216 KB
testcase_33 AC 506 ms
67,256 KB
testcase_34 AC 519 ms
67,916 KB
testcase_35 AC 563 ms
68,276 KB
testcase_36 AC 52 ms
36,676 KB
testcase_37 AC 52 ms
37,376 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();
        Cosme[] cosmes = new Cosme[n];
        for (int i = 0; i < n; i++) {
            cosmes[i] = new Cosme(i, sc.nextInt());
        }
        for (int i = 0; i < n; i++) {
            cosmes[i].b = sc.nextInt();
        }
        Arrays.sort(cosmes);
        char[] ans = new char[n];
        for (int i = 0; i < n; i++) {
            if (i < k) {
                ans[cosmes[i].idx] = 'A';
            } else {
                ans[cosmes[i].idx] = 'B';
            }
        } 
        System.out.println(ans);
    }
    
    static class Cosme implements Comparable<Cosme> {
        int idx;
        long a;
        long b;
        
        public Cosme(int idx, long a) {
            this.idx = idx;
            this.a = a;
        } 
        
        public int compareTo(Cosme another) {
            if (a - b == another.a - another.b) {
                return 0;
            } else if (a - b > another.a - another.b) {
                return -1;
            } else {
                return 1;
            }
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0