結果

問題 No.69 文字を自由に並び替え
ユーザー ぴろずぴろず
提出日時 2014-12-11 16:11:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 75,172 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-12-14 05:46:42
合計ジャッジ時間 5,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,240 KB
testcase_01 AC 130 ms
54,272 KB
testcase_02 AC 127 ms
54,320 KB
testcase_03 AC 132 ms
53,932 KB
testcase_04 AC 118 ms
53,916 KB
testcase_05 AC 130 ms
54,100 KB
testcase_06 AC 131 ms
53,936 KB
testcase_07 AC 128 ms
53,940 KB
testcase_08 AC 121 ms
54,268 KB
testcase_09 AC 124 ms
54,232 KB
testcase_10 AC 126 ms
54,288 KB
testcase_11 AC 111 ms
53,012 KB
testcase_12 AC 131 ms
53,932 KB
testcase_13 AC 111 ms
52,932 KB
testcase_14 AC 125 ms
54,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no069;

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] a = sc.next().toCharArray();
		char[] b = sc.next().toCharArray();
		Arrays.sort(a);
		Arrays.sort(b);
		System.out.println(Arrays.equals(a, b) ? "YES" : "NO");
	}

}
0