結果

問題 No.69 文字を自由に並び替え
ユーザー ribenngeribennge
提出日時 2018-08-29 09:25:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 674 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-12-14 07:09:24
合計ジャッジ時間 4,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,044 KB
testcase_01 AC 125 ms
41,156 KB
testcase_02 AC 126 ms
41,004 KB
testcase_03 AC 125 ms
41,008 KB
testcase_04 AC 127 ms
41,448 KB
testcase_05 AC 127 ms
41,120 KB
testcase_06 AC 129 ms
40,972 KB
testcase_07 AC 126 ms
41,312 KB
testcase_08 AC 127 ms
41,248 KB
testcase_09 AC 125 ms
40,984 KB
testcase_10 AC 126 ms
41,452 KB
testcase_11 AC 125 ms
41,024 KB
testcase_12 AC 115 ms
39,860 KB
testcase_13 AC 127 ms
41,320 KB
testcase_14 AC 129 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class No_69{
	public static void main(String[] args){
		
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		String b = sc.next();
		char[] arraya = new char[a.length()];
		char[] arrayb = new char[b.length()];
		int cnt = 0;
		
		for(int i = 0;i < a.length();i++){
		arraya[i] = a.charAt(i);
		arrayb[i] = b.charAt(i);
		}
		
		Arrays.sort(arraya);
		Arrays.sort(arrayb);
		
		for(int i = 0;i < a.length();i++){
		if(arraya[i] != arrayb[i]){
		break;
		}
		cnt++;
		}
		
		if(cnt == a.length()){
		System.out.println("YES");
		}else{
		System.out.println("NO");
		}
	}
}
		
0