結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ks2mks2m
提出日時 2023-05-19 22:12:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,058 ms / 2,000 ms
コード長 1,983 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 87,568 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-06-01 01:10:51
合計ジャッジ時間 59,375 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
51,048 KB
testcase_01 AC 64 ms
50,324 KB
testcase_02 AC 535 ms
61,988 KB
testcase_03 AC 534 ms
60,556 KB
testcase_04 AC 547 ms
61,320 KB
testcase_05 AC 542 ms
59,764 KB
testcase_06 AC 537 ms
59,972 KB
testcase_07 AC 523 ms
60,504 KB
testcase_08 AC 779 ms
70,120 KB
testcase_09 AC 743 ms
70,972 KB
testcase_10 AC 680 ms
75,472 KB
testcase_11 AC 765 ms
68,004 KB
testcase_12 AC 746 ms
66,488 KB
testcase_13 AC 783 ms
72,176 KB
testcase_14 AC 714 ms
75,600 KB
testcase_15 AC 662 ms
69,840 KB
testcase_16 AC 653 ms
70,428 KB
testcase_17 AC 726 ms
73,452 KB
testcase_18 AC 955 ms
81,740 KB
testcase_19 AC 919 ms
91,184 KB
testcase_20 AC 860 ms
92,428 KB
testcase_21 AC 866 ms
89,824 KB
testcase_22 AC 1,011 ms
90,608 KB
testcase_23 AC 1,001 ms
92,344 KB
testcase_24 AC 993 ms
91,588 KB
testcase_25 AC 936 ms
91,728 KB
testcase_26 AC 950 ms
94,420 KB
testcase_27 AC 1,001 ms
90,988 KB
testcase_28 AC 1,022 ms
101,248 KB
testcase_29 AC 962 ms
94,252 KB
testcase_30 AC 1,000 ms
85,148 KB
testcase_31 AC 842 ms
93,780 KB
testcase_32 AC 914 ms
93,584 KB
testcase_33 AC 915 ms
86,484 KB
testcase_34 AC 1,034 ms
94,312 KB
testcase_35 AC 1,058 ms
91,084 KB
testcase_36 AC 997 ms
96,776 KB
testcase_37 AC 1,001 ms
89,932 KB
testcase_38 AC 594 ms
59,164 KB
testcase_39 AC 775 ms
60,860 KB
testcase_40 AC 572 ms
60,300 KB
testcase_41 AC 604 ms
65,900 KB
testcase_42 AC 876 ms
86,840 KB
testcase_43 AC 850 ms
86,584 KB
testcase_44 AC 883 ms
92,876 KB
testcase_45 AC 795 ms
90,872 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(" ");
			long[] a = new long[n];
			Set<Long> seta = new HashSet<>();
			for (int i = 0; i < n; i++) {
				a[i] = Long.parseLong(sa[i]);
				seta.add(a[i]);
			}
			sa = br.readLine().split(" ");
			long[] b = new long[m];
			Set<Long> setb = new HashSet<>();
			for (int i = 0; i < m; i++) {
				b[i] = Long.parseLong(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]);
					}
				}
				Long[] arr = seta.toArray(new Long[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