結果

問題 No.69 文字を自由に並び替え
ユーザー yun_appyun_app
提出日時 2016-06-11 01:14:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 1,041 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 78,224 KB
実行使用メモリ 37,036 KB
最終ジャッジ日時 2024-05-08 05:10:44
合計ジャッジ時間 3,423 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,940 KB
testcase_01 AC 49 ms
36,824 KB
testcase_02 AC 50 ms
37,036 KB
testcase_03 AC 50 ms
36,908 KB
testcase_04 AC 50 ms
36,660 KB
testcase_05 AC 51 ms
36,824 KB
testcase_06 AC 47 ms
36,660 KB
testcase_07 AC 47 ms
36,992 KB
testcase_08 AC 47 ms
36,888 KB
testcase_09 AC 48 ms
36,948 KB
testcase_10 AC 48 ms
36,736 KB
testcase_11 AC 49 ms
36,992 KB
testcase_12 AC 52 ms
36,948 KB
testcase_13 AC 50 ms
36,680 KB
testcase_14 AC 50 ms
36,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone{
    public static void main(String[] args) throws Exception{
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = br.readLine();
        String t = br.readLine();
        if(s.length()!=t.length()){
            System.out.println("NO");
            return;
        }
        HashMap<Character,Integer> map = new HashMap<Character,Integer>();
        for(int i=0;i<s.length();i++){
            char c = s.charAt(i);
            map.put(c,map.containsKey(c)?map.get(c)+1:1);
        }
        for(int i=0;i<t.length();i++){
            char c = t.charAt(i);
            if(!map.containsKey(c)){
                System.out.println("NO");
                return;
            }
            int n = map.get(c);
            if(n==0){
                System.out.println("NO");
                return;
            }
            map.put(c,n-1);
        }
        System.out.println("YES");
    }
}

0