結果

問題 No.69 文字を自由に並び替え
ユーザー springspring
提出日時 2019-06-13 10:21:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 75,332 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-05-08 06:03:27
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,284 KB
testcase_01 AC 123 ms
41,260 KB
testcase_02 AC 109 ms
41,512 KB
testcase_03 AC 127 ms
41,428 KB
testcase_04 AC 122 ms
41,568 KB
testcase_05 AC 121 ms
41,272 KB
testcase_06 AC 127 ms
41,480 KB
testcase_07 AC 127 ms
41,104 KB
testcase_08 AC 114 ms
39,828 KB
testcase_09 AC 126 ms
41,280 KB
testcase_10 AC 127 ms
41,332 KB
testcase_11 AC 111 ms
41,184 KB
testcase_12 AC 126 ms
41,324 KB
testcase_13 AC 129 ms
41,376 KB
testcase_14 AC 128 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String A = sc.next();
		String B = sc.next();
		sc.close();
		char[] chA = A.toCharArray();
		char[] chB = B.toCharArray();
		Arrays.sort(chA);
		Arrays.sort(chB);
		if(Arrays.equals(chA, chB)){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
 	}// mainmethod

} // class
0