結果

問題 No.69 文字を自由に並び替え
ユーザー kuramubonnkuramubonn
提出日時 2023-02-02 10:03:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-07-02 00:28:44
合計ジャッジ時間 4,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,120 KB
testcase_01 AC 127 ms
41,324 KB
testcase_02 AC 114 ms
40,264 KB
testcase_03 AC 128 ms
41,188 KB
testcase_04 AC 124 ms
40,872 KB
testcase_05 AC 123 ms
41,052 KB
testcase_06 AC 124 ms
41,164 KB
testcase_07 AC 128 ms
40,752 KB
testcase_08 AC 125 ms
41,448 KB
testcase_09 AC 110 ms
40,056 KB
testcase_10 AC 126 ms
41,172 KB
testcase_11 AC 124 ms
41,244 KB
testcase_12 AC 124 ms
41,012 KB
testcase_13 AC 125 ms
40,992 KB
testcase_14 AC 127 ms
40,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] list = new int [26];
		
		String str = sc.next();
		char[] array = str.toCharArray();
		for(char ch:array) {
			if(ch - 'a' < 26)list[ch - 'a']++;
		}
		
		str = sc.next();
		char[] array2 = str.toCharArray();
		for(char ch:array2) {
			if(ch - 'a' < 26)list[ch - 'a']--;
		}
		
		for(int i:list) {
			if(i != 0) {
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0