結果

問題 No.69 文字を自由に並び替え
ユーザー kazapyon27kazapyon27
提出日時 2017-05-13 16:11:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 749 bytes
コンパイル時間 2,969 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 37,424 KB
最終ジャッジ日時 2024-05-08 05:26:26
合計ジャッジ時間 4,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,848 KB
testcase_01 AC 51 ms
37,276 KB
testcase_02 AC 51 ms
37,000 KB
testcase_03 AC 50 ms
37,424 KB
testcase_04 AC 50 ms
37,068 KB
testcase_05 AC 52 ms
37,204 KB
testcase_06 AC 50 ms
37,248 KB
testcase_07 AC 50 ms
37,104 KB
testcase_08 AC 51 ms
37,196 KB
testcase_09 AC 49 ms
37,168 KB
testcase_10 AC 48 ms
36,944 KB
testcase_11 AC 48 ms
36,944 KB
testcase_12 AC 47 ms
36,944 KB
testcase_13 AC 48 ms
37,168 KB
testcase_14 AC 48 ms
37,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;
public class No69 {
	public static void main(String[] args) {
		try(BufferedReader input = new BufferedReader(new InputStreamReader(System.in))){
			String A= input.readLine();
			String B= input.readLine();
			char H_A[] =new char[10];
			char H_B[] =new char[10];
			boolean unmatch=false;
			if(A.equals(B))
				System.out.println("YES");
			else{
				H_A=A.toCharArray();
				Arrays.sort(H_A);
				H_B=B.toCharArray();
				Arrays.sort(H_B);
				for(int i=0;i<H_A.length;i++){
					if(H_A[i]!=H_B[i]){
						unmatch=true;
						break;
					}
				}
				if(unmatch==false)
					System.out.println("YES");
				else
					System.out.println("NO");
			}
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0