結果

問題 No.69 文字を自由に並び替え
ユーザー tentententen
提出日時 2020-11-10 15:02:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-07-22 17:31:32
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,264 KB
testcase_01 AC 123 ms
41,332 KB
testcase_02 AC 127 ms
41,460 KB
testcase_03 AC 124 ms
41,168 KB
testcase_04 AC 125 ms
41,356 KB
testcase_05 AC 113 ms
39,896 KB
testcase_06 AC 127 ms
41,072 KB
testcase_07 AC 127 ms
41,068 KB
testcase_08 AC 121 ms
41,148 KB
testcase_09 AC 125 ms
41,148 KB
testcase_10 AC 124 ms
41,244 KB
testcase_11 AC 125 ms
41,296 KB
testcase_12 AC 125 ms
41,196 KB
testcase_13 AC 130 ms
41,132 KB
testcase_14 AC 125 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] aArr = sc.next().toCharArray();
        Arrays.sort(aArr);
        char[] bArr = sc.next().toCharArray();
        Arrays.sort(bArr);
        if (new String(aArr).equals(new String(bArr))) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0