結果

問題 No.69 文字を自由に並び替え
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-22 16:07:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 640 bytes
コンパイル時間 2,656 ms
コンパイル使用メモリ 75,292 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-05-08 05:17:15
合計ジャッジ時間 4,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,100 KB
testcase_01 AC 119 ms
41,004 KB
testcase_02 AC 107 ms
40,216 KB
testcase_03 AC 118 ms
40,916 KB
testcase_04 AC 119 ms
40,864 KB
testcase_05 AC 118 ms
41,364 KB
testcase_06 AC 118 ms
41,336 KB
testcase_07 AC 120 ms
41,112 KB
testcase_08 AC 123 ms
41,168 KB
testcase_09 AC 120 ms
40,984 KB
testcase_10 AC 122 ms
41,408 KB
testcase_11 AC 124 ms
41,028 KB
testcase_12 AC 107 ms
40,148 KB
testcase_13 AC 112 ms
40,960 KB
testcase_14 AC 122 ms
41,040 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