結果

問題 No.69 文字を自由に並び替え
ユーザー kuramubonnkuramubonn
提出日時 2023-02-02 10:07:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 53,952 KB
最終ジャッジ日時 2024-07-02 00:31:28
合計ジャッジ時間 4,730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,620 KB
testcase_01 AC 126 ms
40,876 KB
testcase_02 AC 126 ms
41,044 KB
testcase_03 AC 128 ms
41,076 KB
testcase_04 AC 129 ms
41,056 KB
testcase_05 AC 131 ms
41,544 KB
testcase_06 AC 130 ms
41,248 KB
testcase_07 AC 125 ms
41,124 KB
testcase_08 AC 113 ms
40,168 KB
testcase_09 AC 131 ms
41,192 KB
testcase_10 AC 127 ms
41,096 KB
testcase_11 AC 128 ms
41,260 KB
testcase_12 AC 127 ms
41,008 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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