結果

問題 No.69 文字を自由に並び替え
ユーザー kou6839kou6839
提出日時 2014-11-19 14:00:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 758 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 79,164 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-05-08 04:36:32
合計ジャッジ時間 5,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,292 KB
testcase_01 AC 109 ms
40,292 KB
testcase_02 AC 106 ms
39,936 KB
testcase_03 AC 119 ms
40,964 KB
testcase_04 AC 104 ms
40,216 KB
testcase_05 AC 114 ms
41,160 KB
testcase_06 AC 119 ms
41,164 KB
testcase_07 AC 108 ms
39,856 KB
testcase_08 AC 105 ms
39,876 KB
testcase_09 AC 120 ms
41,444 KB
testcase_10 AC 117 ms
41,488 KB
testcase_11 AC 107 ms
40,104 KB
testcase_12 AC 119 ms
41,388 KB
testcase_13 AC 114 ms
40,728 KB
testcase_14 AC 123 ms
41,616 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