結果

問題 No.69 文字を自由に並び替え
ユーザー yagi2yagi2
提出日時 2017-04-25 16:41:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 591 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 75,796 KB
実行使用メモリ 41,360 KB
最終ジャッジ日時 2024-05-08 05:25:28
合計ジャッジ時間 4,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,936 KB
testcase_01 AC 120 ms
41,060 KB
testcase_02 AC 116 ms
41,236 KB
testcase_03 AC 105 ms
40,108 KB
testcase_04 AC 119 ms
41,272 KB
testcase_05 AC 119 ms
41,168 KB
testcase_06 AC 122 ms
41,360 KB
testcase_07 AC 108 ms
40,212 KB
testcase_08 AC 109 ms
40,108 KB
testcase_09 AC 122 ms
41,128 KB
testcase_10 AC 121 ms
41,160 KB
testcase_11 AC 113 ms
40,640 KB
testcase_12 AC 109 ms
40,184 KB
testcase_13 AC 111 ms
40,548 KB
testcase_14 AC 119 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        HashMap<String, Integer> A = input(sc);
        HashMap<String, Integer> B = input(sc);

        System.out.println((A.equals(B))? "YES" : "NO");
    }

    private static HashMap<String, Integer> input(Scanner sc) {
        HashMap<String, Integer> res = new HashMap<>();
        for (String s : sc.next().split("")) {
            if (!res.containsKey(s)) res.put(s, 0);
            res.put(s, res.get(s) + 1);
        }

        return res;
    }
}
0