結果

問題 No.69 文字を自由に並び替え
ユーザー リチウムリチウム
提出日時 2014-11-19 01:50:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 75,268 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-05-08 04:35:10
合計ジャッジ時間 4,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,224 KB
testcase_01 AC 125 ms
54,668 KB
testcase_02 AC 110 ms
52,832 KB
testcase_03 AC 120 ms
54,092 KB
testcase_04 AC 127 ms
54,208 KB
testcase_05 AC 128 ms
54,136 KB
testcase_06 AC 125 ms
54,264 KB
testcase_07 AC 125 ms
53,920 KB
testcase_08 AC 124 ms
54,100 KB
testcase_09 AC 113 ms
52,872 KB
testcase_10 AC 123 ms
53,980 KB
testcase_11 AC 124 ms
54,244 KB
testcase_12 AC 111 ms
53,116 KB
testcase_13 AC 124 ms
54,156 KB
testcase_14 AC 126 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		char a[]=sc.next().toCharArray();
		char b[]=sc.next().toCharArray();
		Arrays.sort(a);
		Arrays.sort(b);
		String s="YES";
		for(int i=0;i<a.length;i++){
			if(a[i]!=b[i])s="NO";
		}
		System.out.println(s);
		
	}}
0