結果

問題 No.69 文字を自由に並び替え
ユーザー yuuki121yuuki121
提出日時 2021-01-07 23:48:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 2,592 ms
コンパイル使用メモリ 76,080 KB
実行使用メモリ 38,280 KB
最終ジャッジ日時 2024-04-26 16:25:34
合計ジャッジ時間 4,319 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
37,676 KB
testcase_01 AC 64 ms
37,940 KB
testcase_02 AC 64 ms
37,904 KB
testcase_03 AC 68 ms
38,136 KB
testcase_04 AC 67 ms
38,156 KB
testcase_05 AC 67 ms
38,280 KB
testcase_06 AC 67 ms
37,996 KB
testcase_07 AC 69 ms
38,216 KB
testcase_08 AC 67 ms
37,776 KB
testcase_09 AC 67 ms
38,040 KB
testcase_10 AC 68 ms
37,828 KB
testcase_11 AC 66 ms
37,964 KB
testcase_12 AC 65 ms
37,880 KB
testcase_13 AC 64 ms
37,904 KB
testcase_14 AC 64 ms
37,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		String strA = br.readLine();
		String strB = br.readLine();

		boolean result = Stream.of(strA.split("")).sorted().collect(Collectors.joining())
				.equals(Stream.of(strB.split("")).sorted().collect(Collectors.joining()));

		System.out.println(result ? "YES" : "NO");
	}
}
0