結果

問題 No.69 文字を自由に並び替え
ユーザー k_kadorak_kadora
提出日時 2015-06-11 00:46:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 436 bytes
コンパイル時間 3,170 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-05-08 04:54:46
合計ジャッジ時間 5,598 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,992 KB
testcase_01 AC 118 ms
41,364 KB
testcase_02 AC 116 ms
41,480 KB
testcase_03 AC 123 ms
41,628 KB
testcase_04 AC 118 ms
41,252 KB
testcase_05 AC 107 ms
39,928 KB
testcase_06 AC 107 ms
39,888 KB
testcase_07 AC 122 ms
41,176 KB
testcase_08 AC 100 ms
39,808 KB
testcase_09 AC 117 ms
41,112 KB
testcase_10 AC 117 ms
41,280 KB
testcase_11 AC 117 ms
40,956 KB
testcase_12 AC 105 ms
40,212 KB
testcase_13 AC 109 ms
40,520 KB
testcase_14 AC 117 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
public class Moji{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		boolean b=true;
		char[] s1 = sc.next().toCharArray();
		char[] s2 = sc.next().toCharArray();
		Arrays.sort(s1);
		Arrays.sort(s2);
		for(int i = 0;i<s1.length;i++){
			if(s1[i] != s2[i])b=false;
		}
		if(b){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0