結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ks2mks2m
提出日時 2023-05-19 22:05:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,114 ms / 2,000 ms
コード長 1,920 bytes
コンパイル時間 6,109 ms
コンパイル使用メモリ 80,948 KB
実行使用メモリ 91,040 KB
最終ジャッジ日時 2024-12-21 02:46:10
合計ジャッジ時間 61,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
38,352 KB
testcase_01 AC 64 ms
37,316 KB
testcase_02 AC 586 ms
49,376 KB
testcase_03 AC 572 ms
51,328 KB
testcase_04 AC 601 ms
50,432 KB
testcase_05 AC 587 ms
50,324 KB
testcase_06 AC 577 ms
50,168 KB
testcase_07 AC 566 ms
50,080 KB
testcase_08 AC 727 ms
56,268 KB
testcase_09 AC 746 ms
58,524 KB
testcase_10 AC 706 ms
65,564 KB
testcase_11 AC 744 ms
55,976 KB
testcase_12 AC 703 ms
58,332 KB
testcase_13 AC 791 ms
61,164 KB
testcase_14 AC 737 ms
63,948 KB
testcase_15 AC 682 ms
55,416 KB
testcase_16 AC 691 ms
57,912 KB
testcase_17 AC 732 ms
56,128 KB
testcase_18 AC 931 ms
69,608 KB
testcase_19 AC 918 ms
75,180 KB
testcase_20 AC 870 ms
80,272 KB
testcase_21 AC 901 ms
79,104 KB
testcase_22 AC 964 ms
69,760 KB
testcase_23 AC 1,114 ms
87,184 KB
testcase_24 AC 992 ms
69,568 KB
testcase_25 AC 1,008 ms
68,604 KB
testcase_26 AC 954 ms
81,812 KB
testcase_27 AC 1,033 ms
67,744 KB
testcase_28 AC 1,045 ms
76,820 KB
testcase_29 AC 859 ms
75,004 KB
testcase_30 AC 933 ms
69,620 KB
testcase_31 AC 882 ms
77,880 KB
testcase_32 AC 944 ms
91,040 KB
testcase_33 AC 1,052 ms
75,232 KB
testcase_34 AC 961 ms
77,552 KB
testcase_35 AC 1,064 ms
81,984 KB
testcase_36 AC 996 ms
80,152 KB
testcase_37 AC 983 ms
78,272 KB
testcase_38 AC 689 ms
48,052 KB
testcase_39 AC 843 ms
49,108 KB
testcase_40 AC 612 ms
47,960 KB
testcase_41 AC 652 ms
49,612 KB
testcase_42 AC 946 ms
76,116 KB
testcase_43 AC 1,081 ms
85,780 KB
testcase_44 AC 833 ms
78,764 KB
testcase_45 AC 884 ms
80,452 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]);
			}

			seta.retainAll(setb);
			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