結果

問題 No.69 文字を自由に並び替え
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-18 23:02:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 770 bytes
コンパイル時間 3,382 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 37,184 KB
最終ジャッジ日時 2024-12-14 06:45:58
合計ジャッジ時間 4,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,064 KB
testcase_01 AC 51 ms
37,184 KB
testcase_02 AC 52 ms
37,164 KB
testcase_03 AC 51 ms
37,048 KB
testcase_04 AC 52 ms
37,016 KB
testcase_05 AC 52 ms
37,064 KB
testcase_06 AC 54 ms
37,048 KB
testcase_07 AC 52 ms
37,156 KB
testcase_08 AC 51 ms
37,016 KB
testcase_09 AC 51 ms
36,776 KB
testcase_10 AC 51 ms
37,008 KB
testcase_11 AC 52 ms
36,772 KB
testcase_12 AC 52 ms
37,048 KB
testcase_13 AC 54 ms
37,096 KB
testcase_14 AC 54 ms
37,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No69 {
	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		char[] chrA = br.readLine().toCharArray(); //一文字ずつ分割して配列に入れる
		char[] chrB = br.readLine().toCharArray();
		Arrays.sort(chrA); //アルファベットをソートする
		Arrays.sort(chrB);
		
		int count = 0;
		for (int i = 0; i < chrA.length; i++){
			if(Arrays.equals(chrA, chrB)) count++; //配列の一致確認はArrays.equals(x,y)
		}
		    if (count == chrA.length) System.out.println("YES"); //全部一致ならYES
			else System.out.println("NO");
	}
}
0