結果

問題 No.69 文字を自由に並び替え
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-22 16:07:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 640 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-12-14 06:24:38
合計ジャッジ時間 5,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,168 KB
testcase_01 AC 134 ms
54,128 KB
testcase_02 AC 135 ms
54,136 KB
testcase_03 AC 142 ms
54,196 KB
testcase_04 AC 134 ms
53,940 KB
testcase_05 AC 133 ms
53,884 KB
testcase_06 AC 132 ms
53,872 KB
testcase_07 AC 134 ms
54,076 KB
testcase_08 AC 136 ms
54,352 KB
testcase_09 AC 132 ms
53,932 KB
testcase_10 AC 131 ms
54,156 KB
testcase_11 AC 132 ms
53,940 KB
testcase_12 AC 133 ms
54,108 KB
testcase_13 AC 131 ms
54,132 KB
testcase_14 AC 134 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner sc = new Scanner(System.in);
    	String A = sc.next();
    	char[] a = A.toCharArray();
    	String B = sc.next();
    	char[] b = B.toCharArray();
    	
    	Arrays.sort(a);
    	Arrays.sort(b);
    	
    	A = String.copyValueOf(a);
    	B = String.copyValueOf(b);
    	
    	System.out.println((A.equals(B)) ? "YES":"NO");
    	
	}
}
0