結果

問題 No.69 文字を自由に並び替え
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-27 19:53:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 478 bytes
コンパイル時間 3,412 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-12-14 06:01:20
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,844 KB
testcase_01 AC 130 ms
54,296 KB
testcase_02 AC 131 ms
54,112 KB
testcase_03 AC 114 ms
52,888 KB
testcase_04 AC 128 ms
54,052 KB
testcase_05 AC 129 ms
54,232 KB
testcase_06 AC 118 ms
52,848 KB
testcase_07 AC 129 ms
54,296 KB
testcase_08 AC 129 ms
54,316 KB
testcase_09 AC 131 ms
54,176 KB
testcase_10 AC 114 ms
53,164 KB
testcase_11 AC 137 ms
54,024 KB
testcase_12 AC 131 ms
54,196 KB
testcase_13 AC 118 ms
52,956 KB
testcase_14 AC 131 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No69 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		
		char[] a=sc.next().toCharArray();
		char[] b=sc.next().toCharArray();
		
		Arrays.sort(a);
		Arrays.sort(b);
		boolean t=true;
		
		for(int i=0; i<a.length; i++){
			if(a[i] != b[i]) t=false;
		}
		
		if(t)
			System.out.println("YES");
		else
			System.out.println("NO");
	

	}

}
0