結果

問題 No.69 文字を自由に並び替え
ユーザー 37zigen37zigen
提出日時 2016-04-01 11:37:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-12-14 06:12:45
合計ジャッジ時間 4,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,056 KB
testcase_01 AC 130 ms
53,704 KB
testcase_02 AC 128 ms
54,072 KB
testcase_03 AC 130 ms
54,156 KB
testcase_04 AC 132 ms
53,872 KB
testcase_05 AC 132 ms
54,100 KB
testcase_06 AC 132 ms
54,096 KB
testcase_07 AC 130 ms
53,992 KB
testcase_08 AC 129 ms
54,040 KB
testcase_09 AC 130 ms
53,776 KB
testcase_10 AC 131 ms
54,020 KB
testcase_11 AC 131 ms
53,944 KB
testcase_12 AC 131 ms
54,152 KB
testcase_13 AC 130 ms
53,740 KB
testcase_14 AC 130 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder069;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String str1=sc.next();
		String str2=sc.next();
		char[] c1=str1.toCharArray();
		char[] c2=str2.toCharArray();
		Arrays.sort(c1);
		Arrays.sort(c2);
		for(int i=0;i<c1.length;i++){
			if(c1[i]!=c2[i]){
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0