結果

問題 No.69 文字を自由に並び替え
ユーザー wf4n9wf4n9
提出日時 2017-10-13 10:32:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 988 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 79,712 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-05-08 05:34:07
合計ジャッジ時間 4,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,952 KB
testcase_01 AC 102 ms
40,276 KB
testcase_02 AC 110 ms
40,896 KB
testcase_03 AC 107 ms
41,060 KB
testcase_04 AC 107 ms
41,168 KB
testcase_05 AC 116 ms
41,296 KB
testcase_06 AC 112 ms
41,464 KB
testcase_07 AC 98 ms
40,120 KB
testcase_08 AC 113 ms
41,148 KB
testcase_09 AC 97 ms
40,004 KB
testcase_10 AC 110 ms
40,944 KB
testcase_11 AC 109 ms
40,968 KB
testcase_12 AC 101 ms
40,228 KB
testcase_13 AC 117 ms
40,288 KB
testcase_14 AC 116 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static final String YES = "YES";
	public static final String NO = "NO";
	public static final char CHECKED = '-';

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String inputA = sc.nextLine();
		String inputB = sc.nextLine();

		System.out.println(canRearrange(inputA, inputB));
	}

	public static String canRearrange(final String inputA, final String inputB) {

		// 配列の長さの一致を確認
		if (inputA.length() != inputB.length()) {
			return NO;
		}

		// char配列に変換
		char[] charArrayA = inputA.toCharArray();
		char[] charArrayB = inputB.toCharArray();

		// 順番に存在するか確認
		for (int i = 0; i < charArrayA.length; i++) {
			boolean found = false;
			for(int j = 0; j < charArrayB.length; j++) {
				if (charArrayA[i] == charArrayB[j]) {
					found = true;
					charArrayB[j] = CHECKED;
					break;
				}
			}
			if(!found) return NO;
		}
		return YES;
	}
}
0