結果

問題 No.69 文字を自由に並び替え
ユーザー yun_appyun_app
提出日時 2016-06-11 01:14:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 1,041 bytes
コンパイル時間 2,495 ms
コンパイル使用メモリ 78,376 KB
実行使用メモリ 50,448 KB
最終ジャッジ日時 2024-12-14 06:18:08
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
49,920 KB
testcase_01 AC 58 ms
50,312 KB
testcase_02 AC 57 ms
49,948 KB
testcase_03 AC 57 ms
50,292 KB
testcase_04 AC 56 ms
50,404 KB
testcase_05 AC 57 ms
49,884 KB
testcase_06 AC 55 ms
50,308 KB
testcase_07 AC 55 ms
50,328 KB
testcase_08 AC 56 ms
50,296 KB
testcase_09 AC 57 ms
50,388 KB
testcase_10 AC 57 ms
50,280 KB
testcase_11 AC 56 ms
50,332 KB
testcase_12 AC 57 ms
50,448 KB
testcase_13 AC 57 ms
50,368 KB
testcase_14 AC 56 ms
49,984 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