結果

問題 No.69 文字を自由に並び替え
ユーザー rabirabi
提出日時 2019-06-24 15:00:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 3,589 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 50,600 KB
最終ジャッジ日時 2024-12-14 07:28:05
合計ジャッジ時間 4,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,012 KB
testcase_01 AC 55 ms
50,452 KB
testcase_02 AC 56 ms
50,600 KB
testcase_03 AC 53 ms
50,156 KB
testcase_04 AC 54 ms
49,908 KB
testcase_05 AC 55 ms
50,480 KB
testcase_06 AC 56 ms
50,440 KB
testcase_07 AC 56 ms
50,392 KB
testcase_08 AC 56 ms
49,928 KB
testcase_09 AC 56 ms
50,336 KB
testcase_10 AC 57 ms
50,356 KB
testcase_11 AC 55 ms
50,156 KB
testcase_12 AC 53 ms
50,032 KB
testcase_13 AC 54 ms
50,560 KB
testcase_14 AC 55 ms
50,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Tester2 {
	public static void main(String[] args){
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			char[] a = br.readLine().toCharArray();
			char[] b = br.readLine().toCharArray();
			Arrays.sort(a);
			Arrays.sort(b);
			System.out.println(Arrays.equals(a, b)?"YES":"NO");
		}catch(IOException e) {
			e.printStackTrace();
		}
	}
}
0