結果

問題 No.69 文字を自由に並び替え
ユーザー SuunnSuunn
提出日時 2018-11-20 05:47:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-12-14 07:14:50
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,916 KB
testcase_01 AC 133 ms
53,760 KB
testcase_02 AC 130 ms
54,248 KB
testcase_03 AC 127 ms
54,144 KB
testcase_04 AC 127 ms
54,160 KB
testcase_05 AC 131 ms
53,776 KB
testcase_06 AC 127 ms
53,832 KB
testcase_07 AC 136 ms
53,864 KB
testcase_08 AC 132 ms
54,116 KB
testcase_09 AC 131 ms
54,168 KB
testcase_10 AC 133 ms
53,892 KB
testcase_11 AC 132 ms
54,148 KB
testcase_12 AC 129 ms
54,176 KB
testcase_13 AC 125 ms
53,996 KB
testcase_14 AC 131 ms
54,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		String A = sc.next();
		String B = sc.next();
		int L = A.length();
		char[] a = new char[26];
		char[] b = new char[26];
		for(int i=0;i<L;i++){
			a[A.charAt(i)-'a']++;
			b[B.charAt(i)-'a']++;
		}
		for(int i=0;i<26;i++){
			if(a[i]!=b[i]){
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0