結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ks2mks2m
提出日時 2023-05-19 23:27:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,118 ms / 2,000 ms
コード長 2,163 bytes
コンパイル時間 2,860 ms
コンパイル使用メモリ 87,248 KB
実行使用メモリ 97,936 KB
最終ジャッジ日時 2024-06-01 01:51:29
合計ジャッジ時間 60,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
37,868 KB
testcase_01 AC 61 ms
37,480 KB
testcase_02 AC 548 ms
50,472 KB
testcase_03 AC 540 ms
50,304 KB
testcase_04 AC 545 ms
49,936 KB
testcase_05 AC 546 ms
50,996 KB
testcase_06 AC 595 ms
52,716 KB
testcase_07 AC 540 ms
49,676 KB
testcase_08 AC 789 ms
68,308 KB
testcase_09 AC 761 ms
76,100 KB
testcase_10 AC 721 ms
62,592 KB
testcase_11 AC 779 ms
61,404 KB
testcase_12 AC 753 ms
67,156 KB
testcase_13 AC 826 ms
69,424 KB
testcase_14 AC 762 ms
70,744 KB
testcase_15 AC 697 ms
62,596 KB
testcase_16 AC 667 ms
62,868 KB
testcase_17 AC 746 ms
63,100 KB
testcase_18 AC 954 ms
86,216 KB
testcase_19 AC 1,002 ms
87,584 KB
testcase_20 AC 920 ms
97,936 KB
testcase_21 AC 920 ms
88,908 KB
testcase_22 AC 1,071 ms
90,928 KB
testcase_23 AC 1,017 ms
92,600 KB
testcase_24 AC 1,058 ms
90,284 KB
testcase_25 AC 1,037 ms
95,588 KB
testcase_26 AC 896 ms
85,292 KB
testcase_27 AC 1,031 ms
91,448 KB
testcase_28 AC 1,032 ms
90,208 KB
testcase_29 AC 987 ms
84,708 KB
testcase_30 AC 1,118 ms
93,424 KB
testcase_31 AC 907 ms
86,728 KB
testcase_32 AC 930 ms
88,536 KB
testcase_33 AC 1,008 ms
88,376 KB
testcase_34 AC 1,003 ms
91,888 KB
testcase_35 AC 1,037 ms
84,548 KB
testcase_36 AC 1,064 ms
86,392 KB
testcase_37 AC 1,045 ms
91,324 KB
testcase_38 AC 952 ms
54,652 KB
testcase_39 AC 1,002 ms
57,052 KB
testcase_40 AC 596 ms
49,140 KB
testcase_41 AC 616 ms
51,116 KB
testcase_42 AC 920 ms
81,480 KB
testcase_43 AC 951 ms
83,332 KB
testcase_44 AC 890 ms
94,008 KB
testcase_45 AC 807 ms
88,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
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]);
			List<Long> a = new ArrayList<>();
			List<Long> b = new ArrayList<>();
			Set<Long> seta = new HashSet<>();
			Set<Long> setb = new HashSet<>();
			sa = br.readLine().split(" ");
			for (int i = 0; i < sa.length; i++) {
				try {
					long ai = Long.parseLong(sa[i]);
					a.add(ai);
					seta.add(ai);
				} catch (Exception e) {
				}
			}
			sa = br.readLine().split(" ");
			for (int i = 0; i < sa.length; i++) {
				try {
					long bi = Long.parseLong(sa[i]);
					b.add(bi);
					setb.add(bi);
				} catch (Exception e) {
				}
			}
			int n = a.size();
			int m = b.size();
			for (long i : a) {
				if (!setb.contains(i)) {
					seta.remove(i);
				}
			}

			if (seta.isEmpty()) {
				if (n == 0 || m == 0) {
					pw.println("Yes");
					if (n == 0) {
						for (long i : b) {
							pw.println("Blue " + i);
						}
					} else {
						for (long i : a) {
							pw.println("Red " + i);
						}
					}
				} else {
					pw.println("No");
				}
			} else {
				pw.println("Yes");
				for (long i : a) {
					if (!seta.contains(i)) {
						pw.println("Red " + i);
					}
				}
				Long[] arr = seta.toArray(new Long[0]);
				pw.println("Red " + arr[0]);
				pw.println("Blue " + arr[0]);
				for (long i : b) {
					if (!seta.contains(i)) {
						pw.println("Blue " + 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