結果

問題 No.69 文字を自由に並び替え
ユーザー FpmpAmpm
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

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