結果

問題 No.69 文字を自由に並び替え
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-10 11:53:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 554 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 75,204 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-05-08 04:48:35
合計ジャッジ時間 4,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,884 KB
testcase_01 AC 124 ms
54,080 KB
testcase_02 AC 121 ms
54,144 KB
testcase_03 AC 110 ms
54,392 KB
testcase_04 AC 125 ms
54,368 KB
testcase_05 AC 111 ms
53,020 KB
testcase_06 AC 125 ms
54,160 KB
testcase_07 AC 121 ms
54,052 KB
testcase_08 AC 122 ms
53,984 KB
testcase_09 AC 110 ms
52,648 KB
testcase_10 AC 125 ms
54,424 KB
testcase_11 AC 125 ms
54,000 KB
testcase_12 AC 124 ms
54,464 KB
testcase_13 AC 112 ms
52,712 KB
testcase_14 AC 124 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        String a = koko.next();
        String b = koko.next();
        char[] ah = a.toCharArray();
        char[] bh = b.toCharArray();
        Arrays.sort(ah);
        Arrays.sort(bh);
        String an = String.valueOf(ah);
        String bn = String.valueOf(bh);
        if(an.equals(bn)){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0