結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー tailstails
提出日時 2023-05-19 21:45:31
言語 cLay
(20240714-1)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 3,890 ms
コンパイル使用メモリ 186,264 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-12-21 02:12:13
合計ジャッジ時間 33,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 48 ms
5,376 KB
testcase_03 AC 75 ms
6,016 KB
testcase_04 AC 68 ms
6,016 KB
testcase_05 AC 71 ms
6,016 KB
testcase_06 AC 66 ms
5,888 KB
testcase_07 AC 62 ms
6,016 KB
testcase_08 AC 102 ms
8,832 KB
testcase_09 AC 92 ms
9,344 KB
testcase_10 AC 113 ms
9,472 KB
testcase_11 AC 104 ms
8,320 KB
testcase_12 AC 97 ms
8,704 KB
testcase_13 AC 129 ms
9,472 KB
testcase_14 AC 92 ms
9,600 KB
testcase_15 AC 100 ms
7,808 KB
testcase_16 AC 89 ms
7,680 KB
testcase_17 AC 106 ms
8,576 KB
testcase_18 AC 175 ms
14,720 KB
testcase_19 AC 188 ms
11,008 KB
testcase_20 AC 220 ms
14,720 KB
testcase_21 AC 205 ms
14,080 KB
testcase_22 AC 165 ms
14,592 KB
testcase_23 AC 196 ms
14,336 KB
testcase_24 AC 175 ms
13,184 KB
testcase_25 AC 187 ms
14,080 KB
testcase_26 AC 196 ms
14,720 KB
testcase_27 AC 164 ms
14,208 KB
testcase_28 AC 208 ms
14,336 KB
testcase_29 AC 206 ms
14,592 KB
testcase_30 AC 179 ms
11,520 KB
testcase_31 AC 199 ms
14,720 KB
testcase_32 AC 215 ms
14,592 KB
testcase_33 AC 162 ms
14,720 KB
testcase_34 AC 166 ms
13,696 KB
testcase_35 AC 194 ms
11,392 KB
testcase_36 AC 208 ms
13,568 KB
testcase_37 AC 192 ms
14,208 KB
testcase_38 AC 15 ms
5,504 KB
testcase_39 AC 27 ms
5,504 KB
testcase_40 AC 48 ms
5,248 KB
testcase_41 AC 60 ms
5,504 KB
testcase_42 AC 195 ms
10,240 KB
testcase_43 AC 171 ms
10,112 KB
testcase_44 AC 153 ms
14,720 KB
testcase_45 AC 158 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@t;
rep(t){
	set<ll>x,y,z;
	ll@n,@m;
	rep(n){
		ll@a;
		x.insert(a);
	}
	rep(m){
		ll@a;
		if(x.count(a)){
			x.erase(a);
			z.insert(a);
		}else{
			y.insert(a);
		}
	}
	if(z.empty()&&!x.empty()&&!y.empty()){
		wt("No");
	}else{
		wt("Yes");
		ll u=n<m;
		while(!x.empty()||!y.empty()||!z.empty()){
			if(u){
				while(!y.empty()){
					ll a=*y.begin();
					y.erase(a);
					wt("Blue",a);
				}
				if(!z.empty()){
					ll a=*z.begin();
					z.erase(a);
					wt("Blue",a);
					wt("Red",a);
				}
			}else{
				while(!x.empty()){
					ll a=*x.begin();
					x.erase(a);
					wt("Red",a);
				}
				if(!z.empty()){
					ll a=*z.begin();
					z.erase(a);
					wt("Red",a);
					wt("Blue",a);
				}
			}
			u=!u;
		}
	}
}
0