結果

問題 No.69 文字を自由に並び替え
ユーザー face4face4
提出日時 2018-04-10 00:17:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 50,456 KB
最終ジャッジ日時 2024-12-14 07:01:34
合計ジャッジ時間 3,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,180 KB
testcase_01 AC 58 ms
50,208 KB
testcase_02 AC 56 ms
50,068 KB
testcase_03 AC 58 ms
50,296 KB
testcase_04 AC 57 ms
50,120 KB
testcase_05 AC 57 ms
50,348 KB
testcase_06 AC 57 ms
50,352 KB
testcase_07 AC 58 ms
50,072 KB
testcase_08 AC 58 ms
50,344 KB
testcase_09 AC 57 ms
50,160 KB
testcase_10 AC 57 ms
50,072 KB
testcase_11 AC 57 ms
49,940 KB
testcase_12 AC 58 ms
50,456 KB
testcase_13 AC 58 ms
50,396 KB
testcase_14 AC 57 ms
50,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        char[] a = br.readLine().toCharArray();
        char[] b = br.readLine().toCharArray();
        Arrays.sort(a);
        Arrays.sort(b);

        if (Arrays.equals(a, b)) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0