結果

問題 No.69 文字を自由に並び替え
ユーザー jimanojimano
提出日時 2018-01-07 14:34:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 585 bytes
コンパイル時間 3,468 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 37,320 KB
最終ジャッジ日時 2024-12-14 06:54:51
合計ジャッジ時間 5,045 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,784 KB
testcase_01 AC 54 ms
37,284 KB
testcase_02 AC 55 ms
37,064 KB
testcase_03 AC 56 ms
37,016 KB
testcase_04 AC 55 ms
36,960 KB
testcase_05 AC 54 ms
36,784 KB
testcase_06 AC 53 ms
37,108 KB
testcase_07 AC 54 ms
37,028 KB
testcase_08 AC 54 ms
37,172 KB
testcase_09 AC 54 ms
37,048 KB
testcase_10 AC 54 ms
37,128 KB
testcase_11 AC 55 ms
37,244 KB
testcase_12 AC 55 ms
36,948 KB
testcase_13 AC 58 ms
37,156 KB
testcase_14 AC 55 ms
37,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No0068 {
	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);

			if (Arrays.equals(a, b)) {
				System.out.println("YES");
			} else {
				System.out.println("NO");
			}
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0