結果
問題 | No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia |
ユーザー | tenten |
提出日時 | 2022-08-09 08:35:12 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 716 ms / 2,000 ms |
コード長 | 1,937 bytes |
コンパイル時間 | 1,920 ms |
コンパイル使用メモリ | 78,004 KB |
実行使用メモリ | 76,844 KB |
最終ジャッジ日時 | 2024-09-19 15:53:17 |
合計ジャッジ時間 | 23,524 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
50,688 KB |
testcase_01 | AC | 50 ms
50,284 KB |
testcase_02 | AC | 48 ms
50,556 KB |
testcase_03 | AC | 48 ms
50,216 KB |
testcase_04 | AC | 50 ms
50,480 KB |
testcase_05 | AC | 51 ms
50,152 KB |
testcase_06 | AC | 50 ms
50,144 KB |
testcase_07 | AC | 51 ms
50,356 KB |
testcase_08 | AC | 49 ms
50,644 KB |
testcase_09 | AC | 49 ms
50,516 KB |
testcase_10 | AC | 51 ms
50,532 KB |
testcase_11 | AC | 79 ms
51,256 KB |
testcase_12 | AC | 57 ms
50,528 KB |
testcase_13 | AC | 74 ms
51,348 KB |
testcase_14 | AC | 73 ms
51,308 KB |
testcase_15 | AC | 58 ms
50,592 KB |
testcase_16 | AC | 437 ms
66,396 KB |
testcase_17 | AC | 661 ms
76,844 KB |
testcase_18 | AC | 514 ms
57,748 KB |
testcase_19 | AC | 342 ms
60,476 KB |
testcase_20 | AC | 336 ms
60,248 KB |
testcase_21 | AC | 685 ms
75,172 KB |
testcase_22 | AC | 711 ms
65,264 KB |
testcase_23 | AC | 716 ms
71,268 KB |
testcase_24 | AC | 711 ms
71,496 KB |
testcase_25 | AC | 708 ms
71,860 KB |
testcase_26 | AC | 686 ms
74,760 KB |
testcase_27 | AC | 684 ms
74,980 KB |
testcase_28 | AC | 700 ms
75,048 KB |
testcase_29 | AC | 665 ms
75,176 KB |
testcase_30 | AC | 685 ms
75,144 KB |
testcase_31 | AC | 689 ms
75,180 KB |
testcase_32 | AC | 482 ms
74,708 KB |
testcase_33 | AC | 552 ms
76,704 KB |
testcase_34 | AC | 510 ms
74,672 KB |
testcase_35 | AC | 476 ms
71,008 KB |
testcase_36 | AC | 49 ms
50,468 KB |
testcase_37 | AC | 50 ms
50,480 KB |
ソースコード
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; int a; int b; public Cosme(int idx, int a) { this.idx = idx; this.a = a; } public int compareTo(Cosme 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(""); 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(); } }