結果

問題 No.69 文字を自由に並び替え
ユーザー papipenpapipen
提出日時 2017-03-28 01:23:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 689 bytes
コンパイル時間 2,435 ms
コンパイル使用メモリ 84,836 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-12-14 06:31:43
合計ジャッジ時間 5,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,028 KB
testcase_01 AC 142 ms
53,920 KB
testcase_02 AC 132 ms
54,108 KB
testcase_03 AC 131 ms
54,088 KB
testcase_04 AC 139 ms
54,252 KB
testcase_05 AC 131 ms
54,104 KB
testcase_06 AC 131 ms
54,044 KB
testcase_07 AC 131 ms
54,052 KB
testcase_08 AC 127 ms
53,772 KB
testcase_09 AC 151 ms
54,040 KB
testcase_10 AC 137 ms
54,180 KB
testcase_11 AC 132 ms
53,104 KB
testcase_12 AC 149 ms
54,020 KB
testcase_13 AC 140 ms
54,372 KB
testcase_14 AC 137 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class mojinarabi{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		String a = s.next();
		String b = s.next();
		char A[] = a.toCharArray();
		char B[] = b.toCharArray();
		
		ArrayList<String> arrayA = new ArrayList<String>();
		ArrayList<String> arrayB = new ArrayList<String>();
		for(int i = 0; i < A.length; i++){
			arrayA.add(String.valueOf(A[i]));
			arrayB.add(String.valueOf(B[i]));
		}
		Collections.sort(arrayA);
		Collections.sort(arrayB);
		
		for(int i = 0; i < arrayA.size(); i++){
			if(!(arrayA.get(i).equals(arrayB.get(i)))){
				System.out.println("NO");
				System.exit(0);
			}
		}
		System.out.println("YES");
	}
}
0