結果

問題 No.69 文字を自由に並び替え
ユーザー ktguyktguy
提出日時 2017-07-25 19:58:45
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-12-14 06:42:12
合計ジャッジ時間 4,953 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,908 KB
testcase_01 AC 135 ms
53,876 KB
testcase_02 AC 138 ms
54,048 KB
testcase_03 AC 133 ms
54,200 KB
testcase_04 AC 134 ms
54,108 KB
testcase_05 AC 131 ms
54,132 KB
testcase_06 AC 133 ms
54,156 KB
testcase_07 AC 134 ms
54,108 KB
testcase_08 AC 133 ms
54,124 KB
testcase_09 AC 134 ms
54,044 KB
testcase_10 AC 131 ms
54,044 KB
testcase_11 AC 133 ms
54,172 KB
testcase_12 AC 130 ms
54,172 KB
testcase_13 AC 131 ms
54,004 KB
testcase_14 AC 132 ms
54,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String a = sc.next();
    String b = sc.next();
    char[] aa = new char[a.length()];
    char[] bb = new char[b.length()];

    for(int i = 0; i<a.length(); i++) {
      aa[i] = a.charAt(i);
      bb[i] = b.charAt(i);
     }

     Arrays.sort(aa);
     Arrays.sort(bb);

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