結果

問題 No.69 文字を自由に並び替え
ユーザー ぴろずぴろず
提出日時 2014-12-11 16:11:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 2,915 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-05-08 04:44:53
合計ジャッジ時間 4,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,160 KB
testcase_01 AC 117 ms
53,900 KB
testcase_02 AC 104 ms
54,388 KB
testcase_03 AC 99 ms
52,988 KB
testcase_04 AC 110 ms
53,884 KB
testcase_05 AC 107 ms
53,756 KB
testcase_06 AC 101 ms
52,864 KB
testcase_07 AC 99 ms
52,768 KB
testcase_08 AC 101 ms
52,696 KB
testcase_09 AC 110 ms
54,052 KB
testcase_10 AC 111 ms
54,256 KB
testcase_11 AC 110 ms
54,048 KB
testcase_12 AC 108 ms
54,004 KB
testcase_13 AC 100 ms
52,884 KB
testcase_14 AC 114 ms
54,164 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