結果

問題 No.69 文字を自由に並び替え
ユーザー face4face4
提出日時 2018-04-10 00:17:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 3,206 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 37,328 KB
最終ジャッジ日時 2024-05-08 05:45:09
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,060 KB
testcase_01 AC 53 ms
36,948 KB
testcase_02 AC 52 ms
37,040 KB
testcase_03 AC 52 ms
37,064 KB
testcase_04 AC 52 ms
36,952 KB
testcase_05 AC 52 ms
37,048 KB
testcase_06 AC 52 ms
37,192 KB
testcase_07 AC 53 ms
36,900 KB
testcase_08 AC 52 ms
36,764 KB
testcase_09 AC 52 ms
36,896 KB
testcase_10 AC 53 ms
37,024 KB
testcase_11 AC 54 ms
36,892 KB
testcase_12 AC 54 ms
37,328 KB
testcase_13 AC 53 ms
37,104 KB
testcase_14 AC 56 ms
37,172 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