結果

問題 No.69 文字を自由に並び替え
ユーザー spaciaspacia
提出日時 2015-12-19 12:28:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 50,456 KB
最終ジャッジ日時 2024-12-14 06:08:20
合計ジャッジ時間 3,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,036 KB
testcase_01 AC 57 ms
49,912 KB
testcase_02 AC 57 ms
50,188 KB
testcase_03 AC 58 ms
49,888 KB
testcase_04 AC 57 ms
50,396 KB
testcase_05 AC 57 ms
50,188 KB
testcase_06 AC 56 ms
50,292 KB
testcase_07 AC 56 ms
50,456 KB
testcase_08 AC 57 ms
49,920 KB
testcase_09 AC 56 ms
50,356 KB
testcase_10 AC 57 ms
50,196 KB
testcase_11 AC 58 ms
50,328 KB
testcase_12 AC 57 ms
50,088 KB
testcase_13 AC 59 ms
50,380 KB
testcase_14 AC 58 ms
50,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main69 {
	
	public static char[] getCharSeq (String s) {
		char[] ret = new char[26];
		for (int i = 0; i < s.length(); i++)
			ret[(int)s.charAt(i) - 97]++;
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String a = br.readLine();
		String b = br.readLine();
		
		System.out.println(Arrays.equals(getCharSeq(a),getCharSeq(b)) ? "YES" : "NO");
	}
}
0