結果

問題 No.69 文字を自由に並び替え
ユーザー kou6839kou6839
提出日時 2014-11-19 14:00:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 758 bytes
コンパイル時間 2,410 ms
コンパイル使用メモリ 79,000 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-12-14 05:18:29
合計ジャッジ時間 5,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,652 KB
testcase_01 AC 124 ms
54,076 KB
testcase_02 AC 115 ms
52,928 KB
testcase_03 AC 125 ms
54,032 KB
testcase_04 AC 121 ms
53,816 KB
testcase_05 AC 114 ms
52,960 KB
testcase_06 AC 128 ms
54,016 KB
testcase_07 AC 131 ms
53,972 KB
testcase_08 AC 132 ms
53,816 KB
testcase_09 AC 133 ms
54,124 KB
testcase_10 AC 127 ms
54,084 KB
testcase_11 AC 128 ms
53,820 KB
testcase_12 AC 123 ms
53,872 KB
testcase_13 AC 106 ms
52,772 KB
testcase_14 AC 109 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a=sc.next();
		String b=sc.next();
		HashMap<Character,Integer> aa=new HashMap<>();
		HashMap<Character,Integer> bb=new HashMap<>();
		for(int i=0;i<a.length();i++){
			if(!aa.containsKey(a.charAt(i))){
				aa.put(a.charAt(i), 0);
			}else{
				aa.put(a.charAt(i), aa.get(a.charAt(i))+1);
			}
			if(!bb.containsKey(b.charAt(i))){
				bb.put(b.charAt(i), 0);
			}else{
				bb.put(b.charAt(i), bb.get(b.charAt(i))+1);
			}	
		}
		for(Character g:aa.keySet()){
			if(!bb.containsKey(g)||aa.get(g)!=bb.get(g)){
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0