結果

問題 No.69 文字を自由に並び替え
ユーザー k_kadorak_kadora
提出日時 2015-06-11 00:46:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 436 bytes
コンパイル時間 4,125 ms
コンパイル使用メモリ 75,660 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-12-14 05:58:16
合計ジャッジ時間 6,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,132 KB
testcase_01 AC 131 ms
54,168 KB
testcase_02 AC 131 ms
54,028 KB
testcase_03 AC 129 ms
54,208 KB
testcase_04 AC 130 ms
53,964 KB
testcase_05 AC 130 ms
54,304 KB
testcase_06 AC 126 ms
54,040 KB
testcase_07 AC 129 ms
54,244 KB
testcase_08 AC 120 ms
54,060 KB
testcase_09 AC 133 ms
54,068 KB
testcase_10 AC 128 ms
54,300 KB
testcase_11 AC 128 ms
54,088 KB
testcase_12 AC 128 ms
54,000 KB
testcase_13 AC 127 ms
54,324 KB
testcase_14 AC 130 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
public class Moji{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		boolean b=true;
		char[] s1 = sc.next().toCharArray();
		char[] s2 = sc.next().toCharArray();
		Arrays.sort(s1);
		Arrays.sort(s2);
		for(int i = 0;i<s1.length;i++){
			if(s1[i] != s2[i])b=false;
		}
		if(b){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0