結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ks2mks2m
提出日時 2023-05-19 23:17:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,090 ms / 2,000 ms
コード長 2,039 bytes
コンパイル時間 3,303 ms
コンパイル使用メモリ 80,716 KB
実行使用メモリ 95,684 KB
最終ジャッジ日時 2024-06-01 01:48:42
合計ジャッジ時間 59,293 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
37,984 KB
testcase_01 AC 60 ms
37,352 KB
testcase_02 AC 526 ms
49,776 KB
testcase_03 AC 530 ms
49,568 KB
testcase_04 AC 526 ms
50,024 KB
testcase_05 AC 521 ms
50,380 KB
testcase_06 AC 542 ms
50,456 KB
testcase_07 AC 524 ms
48,744 KB
testcase_08 AC 740 ms
61,824 KB
testcase_09 AC 716 ms
70,348 KB
testcase_10 AC 675 ms
69,872 KB
testcase_11 AC 750 ms
62,624 KB
testcase_12 AC 734 ms
67,464 KB
testcase_13 AC 801 ms
73,848 KB
testcase_14 AC 700 ms
66,848 KB
testcase_15 AC 685 ms
63,564 KB
testcase_16 AC 659 ms
67,048 KB
testcase_17 AC 729 ms
68,412 KB
testcase_18 AC 980 ms
80,032 KB
testcase_19 AC 1,049 ms
92,016 KB
testcase_20 AC 827 ms
89,896 KB
testcase_21 AC 881 ms
90,688 KB
testcase_22 AC 936 ms
92,992 KB
testcase_23 AC 930 ms
94,912 KB
testcase_24 AC 1,021 ms
90,344 KB
testcase_25 AC 1,005 ms
83,200 KB
testcase_26 AC 869 ms
91,220 KB
testcase_27 AC 1,035 ms
88,268 KB
testcase_28 AC 922 ms
88,484 KB
testcase_29 AC 939 ms
95,684 KB
testcase_30 AC 1,056 ms
85,272 KB
testcase_31 AC 826 ms
87,008 KB
testcase_32 AC 811 ms
87,148 KB
testcase_33 AC 919 ms
90,280 KB
testcase_34 AC 975 ms
88,616 KB
testcase_35 AC 1,030 ms
89,320 KB
testcase_36 AC 969 ms
87,640 KB
testcase_37 AC 1,015 ms
84,160 KB
testcase_38 AC 611 ms
54,988 KB
testcase_39 AC 776 ms
49,676 KB
testcase_40 AC 569 ms
49,104 KB
testcase_41 AC 583 ms
54,884 KB
testcase_42 AC 876 ms
88,696 KB
testcase_43 AC 1,090 ms
94,612 KB
testcase_44 AC 837 ms
90,684 KB
testcase_45 AC 785 ms
90,692 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]);
			long[] a = new long[n];
			Set<Long> seta = new HashSet<>();
			long[] b = new long[m];
			Set<Long> setb = new HashSet<>();
			try {
				sa = br.readLine().split(" ");
				for (int i = 0; i < n; i++) {
					a[i] = Long.parseLong(sa[i]);
					seta.add(a[i]);
				}
				sa = br.readLine().split(" ");
				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]);
					}
				}
			} catch (Exception e) {
			}

			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