結果

問題 No.69 文字を自由に並び替え
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-25 15:27:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 75,644 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-05-08 04:47:02
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,884 KB
testcase_01 AC 127 ms
54,472 KB
testcase_02 AC 123 ms
53,800 KB
testcase_03 AC 125 ms
54,004 KB
testcase_04 AC 125 ms
53,740 KB
testcase_05 AC 130 ms
54,192 KB
testcase_06 AC 127 ms
54,152 KB
testcase_07 AC 126 ms
53,976 KB
testcase_08 AC 125 ms
53,800 KB
testcase_09 AC 127 ms
53,724 KB
testcase_10 AC 110 ms
52,740 KB
testcase_11 AC 124 ms
53,992 KB
testcase_12 AC 126 ms
53,692 KB
testcase_13 AC 126 ms
54,120 KB
testcase_14 AC 123 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		char[] A=s.nextLine().toCharArray(),B=s.nextLine().toCharArray();
		Arrays.sort(A);Arrays.sort(B);
		System.out.println(Arrays.equals(A,B)?"YES":"NO");
	}
}
0