結果

問題 No.69 文字を自由に並び替え
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 20:00:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 584 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-12-14 06:09:40
合計ジャッジ時間 4,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,144 KB
testcase_01 AC 127 ms
54,288 KB
testcase_02 AC 126 ms
54,216 KB
testcase_03 AC 126 ms
54,204 KB
testcase_04 AC 113 ms
53,016 KB
testcase_05 AC 128 ms
54,092 KB
testcase_06 AC 129 ms
53,860 KB
testcase_07 AC 126 ms
53,936 KB
testcase_08 AC 120 ms
54,016 KB
testcase_09 AC 127 ms
54,040 KB
testcase_10 AC 123 ms
54,088 KB
testcase_11 AC 128 ms
53,704 KB
testcase_12 AC 124 ms
54,104 KB
testcase_13 AC 113 ms
52,720 KB
testcase_14 AC 116 ms
53,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
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();
		char[] countA = new char[26];
		char[] countB = new char[26];
		for(int i = 0; i < A.length; i++) {
			countA[A[i] - 'a']++; 
		}
		for(int i = 0; i < B.length; i++) {
			countB[B[i] - 'a']++;
		}
		for(int i = 0; i < 26; i++) {
			if(countA[i] != countB[i]) {
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0