結果

問題 No.69 文字を自由に並び替え
ユーザー yuuki121yuuki121
提出日時 2021-01-07 23:48:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 2,647 ms
コンパイル使用メモリ 76,432 KB
実行使用メモリ 51,448 KB
最終ジャッジ日時 2024-11-14 05:40:41
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
51,004 KB
testcase_01 AC 66 ms
51,160 KB
testcase_02 AC 66 ms
51,024 KB
testcase_03 AC 66 ms
50,940 KB
testcase_04 AC 67 ms
51,156 KB
testcase_05 AC 67 ms
51,440 KB
testcase_06 AC 67 ms
51,184 KB
testcase_07 AC 67 ms
51,284 KB
testcase_08 AC 68 ms
51,180 KB
testcase_09 AC 67 ms
50,980 KB
testcase_10 AC 67 ms
51,240 KB
testcase_11 AC 66 ms
51,284 KB
testcase_12 AC 67 ms
51,448 KB
testcase_13 AC 69 ms
51,448 KB
testcase_14 AC 73 ms
51,320 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