結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー tentententen
提出日時 2023-05-30 08:41:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 3,192 bytes
コンパイル時間 5,654 ms
コンパイル使用メモリ 95,596 KB
実行使用メモリ 73,020 KB
最終ジャッジ日時 2024-06-08 19:58:34
合計ジャッジ時間 52,537 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,792 KB
testcase_01 AC 47 ms
36,816 KB
testcase_02 AC 416 ms
53,056 KB
testcase_03 AC 409 ms
51,936 KB
testcase_04 AC 430 ms
51,904 KB
testcase_05 AC 426 ms
51,064 KB
testcase_06 AC 427 ms
50,220 KB
testcase_07 AC 418 ms
48,872 KB
testcase_08 AC 513 ms
55,992 KB
testcase_09 AC 500 ms
57,244 KB
testcase_10 AC 483 ms
56,276 KB
testcase_11 AC 532 ms
56,664 KB
testcase_12 AC 443 ms
55,688 KB
testcase_13 AC 580 ms
63,024 KB
testcase_14 AC 481 ms
55,912 KB
testcase_15 AC 432 ms
54,944 KB
testcase_16 AC 517 ms
58,800 KB
testcase_17 AC 535 ms
55,904 KB
testcase_18 AC 590 ms
64,700 KB
testcase_19 AC 735 ms
64,280 KB
testcase_20 AC 636 ms
68,024 KB
testcase_21 AC 664 ms
65,752 KB
testcase_22 AC 596 ms
64,552 KB
testcase_23 AC 666 ms
73,020 KB
testcase_24 AC 643 ms
66,144 KB
testcase_25 AC 678 ms
67,888 KB
testcase_26 AC 601 ms
65,456 KB
testcase_27 AC 647 ms
65,100 KB
testcase_28 AC 691 ms
67,280 KB
testcase_29 AC 645 ms
65,844 KB
testcase_30 AC 740 ms
66,756 KB
testcase_31 AC 596 ms
67,268 KB
testcase_32 AC 624 ms
64,900 KB
testcase_33 AC 571 ms
65,664 KB
testcase_34 AC 601 ms
65,552 KB
testcase_35 AC 676 ms
63,516 KB
testcase_36 AC 726 ms
65,180 KB
testcase_37 AC 618 ms
67,152 KB
testcase_38 AC 459 ms
52,200 KB
testcase_39 AC 555 ms
60,268 KB
testcase_40 AC 503 ms
59,068 KB
testcase_41 AC 500 ms
53,792 KB
testcase_42 AC 746 ms
64,876 KB
testcase_43 AC 750 ms
63,624 KB
testcase_44 AC 562 ms
69,148 KB
testcase_45 AC 598 ms
69,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (t-- > 0) {
            int n = sc.nextInt();
            int m = sc.nextInt();
            HashSet<Integer> red = new HashSet<>();
            for (int i = 0; i < n; i++) {
                red.add(sc.nextInt());
            }
            HashSet<Integer> blue = new HashSet<>();
            TreeSet<Integer> both = new TreeSet<>();
            for (int i = 0; i < m; i++) {
                int x = sc.nextInt();
                if (red.contains(x)) {
                    red.remove(x);
                    both.add(x);
                } else {
                    blue.add(x);
                }
            }
            if (both.size() == 0 && red.size() > 0 && blue.size() > 0) {
                sb.append("No\n");
                continue;
            }
            sb.append("Yes\n");
            for (int x : red) {
                sb.append("Red ").append(x).append("\n");
            }
            if (both.size() > 0) {
                int y = both.pollFirst();
                sb.append("Red ").append(y).append("\n");
                sb.append("Blue ").append(y).append("\n");
            }
            for (int x : blue) {
                sb.append("Blue ").append(x).append("\n");
            }
            boolean isBlue = true;
            for (int x : both) {
                if (isBlue) {
                    sb.append("Blue ").append(x).append("\n");
                    sb.append("Red ").append(x).append("\n");
                } else {
                    sb.append("Red ").append(x).append("\n");
                    sb.append("Blue ").append(x).append("\n");
                }
                isBlue ^= true;
            }
        }
        System.out.print(sb);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0