結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ks2mks2m
提出日時 2023-05-19 22:07:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,102 ms / 2,000 ms
コード長 1,995 bytes
コンパイル時間 5,703 ms
コンパイル使用メモリ 80,344 KB
実行使用メモリ 94,248 KB
最終ジャッジ日時 2024-06-01 01:03:26
合計ジャッジ時間 62,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
51,184 KB
testcase_01 AC 66 ms
50,528 KB
testcase_02 AC 547 ms
60,992 KB
testcase_03 AC 549 ms
60,880 KB
testcase_04 AC 571 ms
60,712 KB
testcase_05 AC 540 ms
59,980 KB
testcase_06 AC 552 ms
60,100 KB
testcase_07 AC 554 ms
60,604 KB
testcase_08 AC 809 ms
74,068 KB
testcase_09 AC 725 ms
72,756 KB
testcase_10 AC 686 ms
72,952 KB
testcase_11 AC 748 ms
68,904 KB
testcase_12 AC 738 ms
76,928 KB
testcase_13 AC 795 ms
72,804 KB
testcase_14 AC 746 ms
75,576 KB
testcase_15 AC 680 ms
69,484 KB
testcase_16 AC 673 ms
69,396 KB
testcase_17 AC 720 ms
67,264 KB
testcase_18 AC 924 ms
76,872 KB
testcase_19 AC 943 ms
89,428 KB
testcase_20 AC 927 ms
93,756 KB
testcase_21 AC 933 ms
90,536 KB
testcase_22 AC 988 ms
76,988 KB
testcase_23 AC 939 ms
94,248 KB
testcase_24 AC 986 ms
78,056 KB
testcase_25 AC 941 ms
77,744 KB
testcase_26 AC 920 ms
93,608 KB
testcase_27 AC 998 ms
79,476 KB
testcase_28 AC 1,032 ms
90,080 KB
testcase_29 AC 1,040 ms
86,972 KB
testcase_30 AC 1,084 ms
81,536 KB
testcase_31 AC 873 ms
87,012 KB
testcase_32 AC 966 ms
90,864 KB
testcase_33 AC 932 ms
84,852 KB
testcase_34 AC 989 ms
88,708 KB
testcase_35 AC 1,102 ms
88,632 KB
testcase_36 AC 893 ms
89,004 KB
testcase_37 AC 1,018 ms
80,624 KB
testcase_38 AC 630 ms
59,664 KB
testcase_39 AC 763 ms
60,420 KB
testcase_40 AC 581 ms
59,756 KB
testcase_41 AC 604 ms
66,060 KB
testcase_42 AC 1,048 ms
86,496 KB
testcase_43 AC 981 ms
85,416 KB
testcase_44 AC 797 ms
86,788 KB
testcase_45 AC 776 ms
87,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashSet;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			String[] sa = br.readLine().split(" ");
			int n = Integer.parseInt(sa[0]);
			int m = Integer.parseInt(sa[1]);
			sa = br.readLine().split(" ");
			int[] a = new int[n];
			Set<Integer> seta = new HashSet<>();
			for (int i = 0; i < n; i++) {
				a[i] = Integer.parseInt(sa[i]);
				seta.add(a[i]);
			}
			sa = br.readLine().split(" ");
			int[] b = new int[m];
			Set<Integer> setb = new HashSet<>();
			for (int i = 0; i < m; i++) {
				b[i] = Integer.parseInt(sa[i]);
				setb.add(b[i]);
			}

			for (int i = 0; i < n; i++) {
				if (!setb.contains(a[i])) {
					seta.remove(a[i]);
				}
			}
			if (seta.isEmpty()) {
				if (n == 0 || m == 0) {
					pw.println("Yes");
					if (n == 0) {
						for (int i = 0; i < m; i++) {
							pw.println("Blue " + b[i]);
						}
					} else {
						for (int i = 0; i < n; i++) {
							pw.println("Red " + a[i]);
						}
					}
				} else {
					pw.println("No");
				}
			} else {
				pw.println("Yes");
				for (int i = 0; i < n; i++) {
					if (!seta.contains(a[i])) {
						pw.println("Red " + a[i]);
					}
				}
				Integer[] arr = seta.toArray(new Integer[0]);
				pw.println("Red " + arr[0]);
				pw.println("Blue " + arr[0]);
				for (int i = 0; i < m; i++) {
					if (!seta.contains(b[i])) {
						pw.println("Blue " + b[i]);
					}
				}
				for (int i = 1; i < arr.length; i++) {
					if (i % 2 == 0) {
						pw.println("Red " + arr[i]);
						pw.println("Blue " + arr[i]);
					} else {
						pw.println("Blue " + arr[i]);
						pw.println("Red " + arr[i]);
					}
				}
			}
		}
		pw.flush();
		br.close();

	}
}
0