結果
問題 | No.2307 [Cherry 5 th Tune *] Cool 46 |
ユーザー | ks2m |
提出日時 | 2023-05-19 21:46:29 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,591 bytes |
コンパイル時間 | 4,045 ms |
コンパイル使用メモリ | 85,156 KB |
実行使用メモリ | 92,492 KB |
最終ジャッジ日時 | 2024-06-01 00:31:41 |
合計ジャッジ時間 | 57,405 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
38,064 KB |
testcase_01 | AC | 59 ms
37,480 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 | 681 ms
56,992 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 867 ms
66,444 KB |
testcase_19 | WA | - |
testcase_20 | AC | 946 ms
85,676 KB |
testcase_21 | AC | 858 ms
82,584 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 939 ms
67,716 KB |
testcase_28 | WA | - |
testcase_29 | AC | 886 ms
76,196 KB |
testcase_30 | WA | - |
testcase_31 | AC | 836 ms
76,824 KB |
testcase_32 | WA | - |
testcase_33 | AC | 1,009 ms
75,360 KB |
testcase_34 | AC | 1,044 ms
76,000 KB |
testcase_35 | AC | 957 ms
77,380 KB |
testcase_36 | WA | - |
testcase_37 | AC | 1,026 ms
82,212 KB |
testcase_38 | AC | 623 ms
48,524 KB |
testcase_39 | AC | 781 ms
48,784 KB |
testcase_40 | AC | 567 ms
47,800 KB |
testcase_41 | AC | 593 ms
48,356 KB |
testcase_42 | AC | 867 ms
74,916 KB |
testcase_43 | AC | 1,035 ms
74,684 KB |
testcase_44 | AC | 782 ms
76,784 KB |
testcase_45 | AC | 730 ms
76,576 KB |
ソースコード
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(" "); int[] a = new int[n]; Set<Integer> seta = new HashSet<>(); for (int i = 0; i < n; i++) { a[i] = Integer.parseInt(sa[i]); seta.add(a[i]); } sa = br.readLine().split(" "); int[] b = new int[m]; Set<Integer> setb = new HashSet<>(); for (int i = 0; i < m; i++) { b[i] = Integer.parseInt(sa[i]); setb.add(b[i]); } seta.retainAll(setb); 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"); if (seta.size() % 2 == 0 && seta.size() != n && seta.size() != m) { Integer e = seta.iterator().next(); seta.remove(e); } if (seta.size() < n) { for (int i = 0; i < n; i++) { if (!seta.contains(a[i])) { pw.println("Red " + a[i]); } } Integer[] arr = seta.toArray(new Integer[0]); for (int i = 0; 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]); } } for (int i = 0; i < m; i++) { if (!seta.contains(b[i])) { pw.println("Blue " + b[i]); } } } else { for (int i = 0; i < m; i++) { if (!seta.contains(b[i])) { pw.println("Blue " + b[i]); } } Integer[] arr = seta.toArray(new Integer[0]); for (int i = 0; i < arr.length; i++) { if (i % 2 == 0) { pw.println("Blue " + arr[i]); pw.println("Red " + arr[i]); } else { pw.println("Red " + arr[i]); pw.println("Blue " + arr[i]); } } for (int i = 0; i < n; i++) { if (!seta.contains(a[i])) { pw.println("Red " + a[i]); } } } } } pw.flush(); br.close(); } }