結果

問題 No.69 文字を自由に並び替え
ユーザー papipenpapipen
提出日時 2017-03-28 01:23:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 689 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-05-08 05:23:58
合計ジャッジ時間 4,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,088 KB
testcase_01 AC 114 ms
40,364 KB
testcase_02 AC 118 ms
41,244 KB
testcase_03 AC 121 ms
41,080 KB
testcase_04 AC 112 ms
40,276 KB
testcase_05 AC 122 ms
40,988 KB
testcase_06 AC 118 ms
41,188 KB
testcase_07 AC 108 ms
40,024 KB
testcase_08 AC 121 ms
41,404 KB
testcase_09 AC 127 ms
41,676 KB
testcase_10 AC 125 ms
41,428 KB
testcase_11 AC 107 ms
40,064 KB
testcase_12 AC 118 ms
40,972 KB
testcase_13 AC 109 ms
40,552 KB
testcase_14 AC 125 ms
41,516 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