結果
問題 | No.2307 [Cherry 5 th Tune *] Cool 46 |
ユーザー | timi |
提出日時 | 2023-05-19 22:34:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,369 bytes |
コンパイル時間 | 333 ms |
コンパイル使用メモリ | 82,532 KB |
実行使用メモリ | 145,944 KB |
最終ジャッジ日時 | 2024-06-01 01:27:29 |
合計ジャッジ時間 | 26,673 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,008 KB |
testcase_01 | AC | 38 ms
52,772 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 231 ms
97,744 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 243 ms
132,000 KB |
testcase_19 | WA | - |
testcase_20 | AC | 268 ms
145,944 KB |
testcase_21 | AC | 270 ms
140,704 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 275 ms
128,496 KB |
testcase_28 | WA | - |
testcase_29 | AC | 279 ms
140,460 KB |
testcase_30 | WA | - |
testcase_31 | AC | 265 ms
145,828 KB |
testcase_32 | WA | - |
testcase_33 | AC | 242 ms
121,696 KB |
testcase_34 | AC | 264 ms
119,992 KB |
testcase_35 | AC | 252 ms
116,784 KB |
testcase_36 | WA | - |
testcase_37 | AC | 273 ms
133,468 KB |
testcase_38 | AC | 521 ms
77,496 KB |
testcase_39 | AC | 676 ms
79,448 KB |
testcase_40 | AC | 231 ms
77,484 KB |
testcase_41 | AC | 258 ms
78,852 KB |
testcase_42 | AC | 226 ms
112,924 KB |
testcase_43 | AC | 226 ms
113,688 KB |
testcase_44 | AC | 233 ms
144,324 KB |
testcase_45 | AC | 236 ms
144,520 KB |
ソースコード
T=int(input()) for _ in range(T): N,M=map(int, input().split()) A=list(map(int, input().split())) B=list(map(int, input().split())) D={} for a in A: D[a]=1 for b in B: if b in D: D[b]=2 else: D[b]=-1 r,b,c=0,0,0 R,B,C=[],[],[] for d in D: if D[d]==2: c+=1 C.append(d) elif D[d]==1: r+=1 R.append(d) else: b+=1 B.append(d) ans=[] if c==0: if r==0 or b==0: print('Yes') if r==0: for i in B: print('Blue',i) else: for i in R: print('Red',i) else: print('No') elif c%2==0: if b==0: print('Yes') for i in R: print('Red',i) for i in range(c//2): x,y=C[2*i],C[2*i+1] print('Red',x) print('Blue',x) print('Blue',y) print('Red',y) elif r==0: print('Yes') for i in B: print('Blue',i) for i in range(c//2): x,y=C[2*i],C[2*i+1] print('Blue',x) print('Red',x) print('Red',y) print('Blue',y) else: print('Yes') else: print('Yes') for i in R: print('Red',i) for i in range(c): if i%2==0: print('Red',C[i]) print('Blue',C[i]) else: print('Blue',C[i]) print('Red',C[i]) for i in B: print('Blue',i)