結果

問題 No.69 文字を自由に並び替え
ユーザー juger_jvjuger_jv
提出日時 2016-05-03 20:53:39
言語 Java
(openjdk 23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 494 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 50,400 KB
最終ジャッジ日時 2024-12-14 06:14:17
合計ジャッジ時間 3,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,920 KB
testcase_01 AC 56 ms
50,268 KB
testcase_02 AC 55 ms
50,164 KB
testcase_03 AC 55 ms
50,328 KB
testcase_04 AC 55 ms
50,304 KB
testcase_05 AC 54 ms
50,400 KB
testcase_06 AC 54 ms
50,324 KB
testcase_07 AC 55 ms
50,344 KB
testcase_08 AC 55 ms
50,256 KB
testcase_09 AC 55 ms
50,324 KB
testcase_10 WA -
testcase_11 AC 54 ms
50,384 KB
testcase_12 AC 54 ms
50,068 KB
testcase_13 AC 55 ms
50,176 KB
testcase_14 AC 55 ms
50,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
class no69
{
    public static void main(String args[])throws IOException
    {
	BufferedReader sc=new BufferedReader(new InputStreamReader(System.in));
	String a,b;
	a=sc.readLine();
	b=sc.readLine();
	int alpha[]=new int[26];
	for(int i=0;i<a.length();i++)
	    {
		alpha[a.charAt(i)-'a']++;
		alpha[b.charAt(i)-'a']++;
	    }
	boolean flag=true;
	for(int i=0;i<26;i++)if(alpha[i]%2!=0)flag=false;
	if(flag)System.out.println("YES");
	else System.out.println("NO");
    }
}
0