結果

問題 No.69 文字を自由に並び替え
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-05 18:29:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 477 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-05-08 05:03:14
合計ジャッジ時間 4,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,088 KB
testcase_01 AC 124 ms
54,340 KB
testcase_02 AC 124 ms
54,048 KB
testcase_03 AC 125 ms
54,176 KB
testcase_04 AC 124 ms
54,516 KB
testcase_05 AC 124 ms
54,088 KB
testcase_06 AC 122 ms
54,144 KB
testcase_07 AC 122 ms
54,124 KB
testcase_08 AC 123 ms
54,296 KB
testcase_09 AC 122 ms
54,148 KB
testcase_10 AC 122 ms
54,104 KB
testcase_11 AC 120 ms
54,076 KB
testcase_12 AC 126 ms
53,872 KB
testcase_13 AC 124 ms
54,344 KB
testcase_14 AC 123 ms
54,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Test {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);

		char[] a = in.next().toCharArray();
		char[] b = in.next().toCharArray();

		Arrays.sort(a);
		Arrays.sort(b);
		boolean bool = true;

		for(int i=0; i<a.length; i++) {
			if(a[i] != b[i]) {
				bool = false;
			}
		}

		if(bool) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0