結果
問題 | No.69 文字を自由に並び替え |
ユーザー | ShotaroSuzu |
提出日時 | 2020-05-19 20:15:10 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 136 ms / 5,000 ms |
コード長 | 1,374 bytes |
コンパイル時間 | 3,998 ms |
コンパイル使用メモリ | 84,768 KB |
実行使用メモリ | 54,280 KB |
最終ジャッジ日時 | 2024-10-01 22:59:28 |
合計ジャッジ時間 | 6,878 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
54,172 KB |
testcase_01 | AC | 117 ms
53,020 KB |
testcase_02 | AC | 131 ms
54,016 KB |
testcase_03 | AC | 132 ms
53,916 KB |
testcase_04 | AC | 132 ms
54,020 KB |
testcase_05 | AC | 136 ms
53,920 KB |
testcase_06 | AC | 135 ms
53,864 KB |
testcase_07 | AC | 134 ms
53,888 KB |
testcase_08 | AC | 135 ms
53,792 KB |
testcase_09 | AC | 134 ms
54,280 KB |
testcase_10 | AC | 134 ms
53,652 KB |
testcase_11 | AC | 135 ms
53,912 KB |
testcase_12 | AC | 132 ms
54,008 KB |
testcase_13 | AC | 134 ms
53,816 KB |
testcase_14 | AC | 130 ms
53,808 KB |
ソースコード
package yukicoder.beginner.anagram; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; import java.util.Scanner; public class AnagramJudger { public static void main(String[] args) { new AnagramJudger().executeJudge(); } private void executeJudge() { @SuppressWarnings("resource") Scanner sc = new Scanner(System.in); String firstString = sc.next(); String secondString = sc.next(); boolean res = judge(firstString, secondString); if(res) { System.out.println("YES"); } else { System.out.println("NO"); } } private boolean judge(String firstString, String secondString) { Map<Character, Integer> firstStrNumMap = paseToStrNumMap(firstString); Map<Character, Integer> secondStrNumMap = paseToStrNumMap(secondString); for (Entry<Character, Integer> strNumPair : firstStrNumMap.entrySet()) { if(secondStrNumMap.containsKey(strNumPair.getKey()) == false) { return false; } if(secondStrNumMap.getOrDefault(strNumPair.getKey(), -1) != strNumPair.getValue()) { return false; } } return true; } private Map<Character, Integer> paseToStrNumMap(String firstString) { Map<Character, Integer> res = new HashMap<>(); for (int i = 0; i < firstString.length(); i++) { Character target = firstString.charAt(i); res.put(target, res.getOrDefault(target, 0) + 1); } return res; } }