結果
問題 | No.470 Inverse S+T Problem |
ユーザー | tenten |
提出日時 | 2021-03-08 14:44:50 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,797 bytes |
コンパイル時間 | 1,957 ms |
コンパイル使用メモリ | 77,916 KB |
実行使用メモリ | 86,324 KB |
最終ジャッジ日時 | 2024-06-01 23:07:03 |
合計ジャッジ時間 | 10,477 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
41,820 KB |
testcase_01 | AC | 113 ms
41,104 KB |
testcase_02 | AC | 121 ms
41,584 KB |
testcase_03 | AC | 117 ms
41,976 KB |
testcase_04 | AC | 116 ms
40,692 KB |
testcase_05 | AC | 113 ms
41,708 KB |
testcase_06 | AC | 363 ms
53,204 KB |
testcase_07 | AC | 710 ms
66,572 KB |
testcase_08 | AC | 446 ms
54,012 KB |
testcase_09 | AC | 116 ms
40,788 KB |
testcase_10 | AC | 125 ms
42,476 KB |
testcase_11 | AC | 319 ms
52,960 KB |
testcase_12 | AC | 106 ms
40,468 KB |
testcase_13 | AC | 117 ms
41,540 KB |
testcase_14 | AC | 140 ms
43,040 KB |
testcase_15 | AC | 149 ms
45,328 KB |
testcase_16 | AC | 117 ms
41,808 KB |
testcase_17 | AC | 124 ms
42,736 KB |
testcase_18 | AC | 131 ms
42,616 KB |
testcase_19 | AC | 159 ms
45,120 KB |
testcase_20 | AC | 120 ms
42,068 KB |
testcase_21 | AC | 114 ms
41,664 KB |
testcase_22 | AC | 122 ms
41,708 KB |
testcase_23 | AC | 118 ms
41,668 KB |
testcase_24 | AC | 121 ms
41,644 KB |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
import java.util.*; public class Main { static String[] strings; static int n; public static void main(String[] args) { Scanner sc = new Scanner(System.in); n = sc.nextInt(); strings = new String[n]; for (int i = 0; i < n; i++) { strings[i] = sc.next(); } check(0, new HashSet<String>(), new boolean[n]); System.out.println("Impossible"); } static void check(int idx, HashSet<String> used, boolean[] firstOne) { if (idx == n) { output(firstOne); System.exit(0); } String one = strings[idx].substring(0, 1); String two = strings[idx].substring(1, 3); if (!used.contains(one) && !used.contains(two)) { firstOne[idx] = true; used.add(one); used.add(two); check(idx + 1, used, firstOne); used.remove(one); used.remove(two); } one = strings[idx].substring(0, 2); two = strings[idx].substring(2, 3); if (!used.contains(one) && !used.contains(two)) { firstOne[idx] = false; used.add(one); used.add(two); check(idx + 1, used, firstOne); used.remove(one); used.remove(two); } } static void output(boolean[] firstOne) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { if (firstOne[i]) { sb.append(strings[i].substring(0, 1)).append(" ").append(strings[i].substring(1, 3)); } else { sb.append(strings[i].substring(0, 2)).append(" ").append(strings[i].substring(2, 3)); } sb.append("\n"); } System.out.print(sb); } }