結果

問題 No.69 文字を自由に並び替え
ユーザー rabirabi
提出日時 2019-06-24 15:00:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 3,878 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 50,540 KB
最終ジャッジ日時 2024-05-08 06:03:58
合計ジャッジ時間 4,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,280 KB
testcase_01 AC 54 ms
50,396 KB
testcase_02 AC 53 ms
50,024 KB
testcase_03 AC 52 ms
50,328 KB
testcase_04 AC 53 ms
50,188 KB
testcase_05 AC 54 ms
50,348 KB
testcase_06 AC 53 ms
50,372 KB
testcase_07 AC 53 ms
50,540 KB
testcase_08 AC 54 ms
50,220 KB
testcase_09 AC 54 ms
50,408 KB
testcase_10 AC 53 ms
50,144 KB
testcase_11 AC 54 ms
50,276 KB
testcase_12 AC 54 ms
50,356 KB
testcase_13 AC 54 ms
50,404 KB
testcase_14 AC 54 ms
50,340 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