結果

問題 No.69 文字を自由に並び替え
ユーザー syusyu
提出日時 2020-08-26 18:39:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 5,961 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-11-07 13:18:16
合計ジャッジ時間 4,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,088 KB
testcase_01 AC 125 ms
53,948 KB
testcase_02 AC 121 ms
54,216 KB
testcase_03 AC 121 ms
54,148 KB
testcase_04 AC 123 ms
54,128 KB
testcase_05 AC 119 ms
54,372 KB
testcase_06 AC 123 ms
54,256 KB
testcase_07 AC 120 ms
54,336 KB
testcase_08 AC 118 ms
53,964 KB
testcase_09 AC 121 ms
54,044 KB
testcase_10 AC 122 ms
54,104 KB
testcase_11 AC 122 ms
54,244 KB
testcase_12 AC 122 ms
54,128 KB
testcase_13 AC 121 ms
54,060 KB
testcase_14 AC 120 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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