結果

問題 No.69 文字を自由に並び替え
ユーザー jimanojimano
提出日時 2016-06-19 21:04:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 900 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 50,528 KB
最終ジャッジ日時 2024-12-14 06:18:14
合計ジャッジ時間 3,715 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
50,288 KB
testcase_01 AC 56 ms
50,296 KB
testcase_02 AC 54 ms
49,968 KB
testcase_03 AC 56 ms
50,416 KB
testcase_04 AC 55 ms
50,200 KB
testcase_05 AC 55 ms
50,356 KB
testcase_06 AC 56 ms
50,044 KB
testcase_07 AC 55 ms
50,304 KB
testcase_08 AC 55 ms
50,248 KB
testcase_09 AC 56 ms
50,528 KB
testcase_10 AC 57 ms
50,220 KB
testcase_11 AC 57 ms
50,208 KB
testcase_12 AC 57 ms
50,084 KB
testcase_13 AC 56 ms
50,384 KB
testcase_14 AC 57 ms
50,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main{
	public static void main(String[] args) {
		try (BufferedReader br = 
				new BufferedReader(new InputStreamReader(System.in))) {
			// char→intに変換し、ソートと比較を行う
			char[] a = br.readLine().toCharArray();
			char[] b = br.readLine().toCharArray();
			int[] aCode = toCode(a);
			int[] bCode = toCode(b);

			Arrays.sort(aCode);
			Arrays.sort(bCode);

			for (int i = 0; i < aCode.length; i++) {
				if (aCode[i] != bCode[i]) {
					System.out.println("NO");
					return;
				}
			}
			System.out.println("YES");

		} catch (IOException e) {
			e.printStackTrace();
		}
    }
	
	static int[] toCode(char[] chr){
		int[] code = new int[chr.length];
		for(int i =0; i < chr.length; i++){
			code[i] = (int)chr[i];
		}
		return code;
	}
}
0