結果
問題 | No.2757 Pin Game |
ユーザー | tomoya |
提出日時 | 2024-05-24 00:01:32 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 891 bytes |
コンパイル時間 | 2,437 ms |
コンパイル使用メモリ | 85,556 KB |
実行使用メモリ | 107,492 KB |
最終ジャッジ日時 | 2024-05-24 00:01:43 |
合計ジャッジ時間 | 8,823 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 118 ms
54,196 KB |
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 | WA | - |
ソースコード
// No.2707 Bag of Words Encryption import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); Map<String, Integer> wordCount = new HashMap<>(); for (int i = 0; i < n; i++) { String word = sc.next(); wordCount.put(word, wordCount.getOrDefault(word, 0) + 1); } List<String> words = new ArrayList<>(wordCount.keySet()); words.sort(Comparator.comparingInt(wordCount::get)); StringBuilder encrypted = new StringBuilder(); for (String word : words) { int count = wordCount.get(word); for (int j = 0; j < count; j++) { encrypted.append(word); encrypted.append(" "); } } System.out.println(encrypted.toString().trim()); } }