結果

問題 No.69 文字を自由に並び替え
ユーザー ribenngeribennge
提出日時 2018-08-29 09:25:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 674 bytes
コンパイル時間 1,810 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 41,260 KB
最終ジャッジ日時 2024-05-08 05:50:37
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,812 KB
testcase_01 AC 97 ms
39,976 KB
testcase_02 AC 95 ms
40,084 KB
testcase_03 AC 104 ms
41,124 KB
testcase_04 AC 101 ms
40,268 KB
testcase_05 AC 119 ms
41,244 KB
testcase_06 AC 107 ms
41,152 KB
testcase_07 AC 99 ms
40,180 KB
testcase_08 AC 109 ms
41,204 KB
testcase_09 AC 105 ms
41,172 KB
testcase_10 AC 105 ms
40,904 KB
testcase_11 AC 105 ms
41,176 KB
testcase_12 AC 106 ms
40,924 KB
testcase_13 AC 100 ms
40,168 KB
testcase_14 AC 107 ms
41,260 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