結果
問題 | No.205 マージして辞書順最小 |
ユーザー | tenten |
提出日時 | 2020-10-07 12:01:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 597 bytes |
コンパイル時間 | 2,292 ms |
コンパイル使用メモリ | 75,308 KB |
実行使用メモリ | 42,096 KB |
最終ジャッジ日時 | 2024-07-20 03:21:01 |
合計ジャッジ時間 | 5,565 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
40,900 KB |
testcase_01 | AC | 102 ms
39,800 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 119 ms
41,128 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 132 ms
40,664 KB |
testcase_11 | AC | 153 ms
40,936 KB |
testcase_12 | WA | - |
testcase_13 | AC | 146 ms
41,284 KB |
testcase_14 | AC | 110 ms
39,836 KB |
testcase_15 | AC | 112 ms
39,876 KB |
testcase_16 | AC | 121 ms
41,280 KB |
testcase_17 | AC | 122 ms
41,000 KB |
testcase_18 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); PriorityQueue<StringBuilder> queue = new PriorityQueue<>(); while (0 < n--) { StringBuilder sb = new StringBuilder(sc.next()); sb.append('A'); queue.add(sb); } StringBuilder ans = new StringBuilder(); while (queue.size() > 0) { StringBuilder sb = queue.poll(); ans.append(sb.charAt(0)); sb.deleteCharAt(0); if (sb.length() > 1) { queue.add(sb); } } System.out.println(ans); } }