結果

問題 No.69 文字を自由に並び替え
ユーザー wf4n9wf4n9
提出日時 2017-10-13 10:32:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 988 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 54,624 KB
最終ジャッジ日時 2024-12-14 06:46:42
合計ジャッジ時間 5,029 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,976 KB
testcase_01 AC 136 ms
53,952 KB
testcase_02 AC 133 ms
53,892 KB
testcase_03 AC 128 ms
54,188 KB
testcase_04 AC 132 ms
54,216 KB
testcase_05 AC 131 ms
53,968 KB
testcase_06 AC 134 ms
54,220 KB
testcase_07 AC 134 ms
53,920 KB
testcase_08 AC 135 ms
53,944 KB
testcase_09 AC 135 ms
54,140 KB
testcase_10 AC 135 ms
53,972 KB
testcase_11 AC 136 ms
54,624 KB
testcase_12 AC 135 ms
54,420 KB
testcase_13 AC 134 ms
54,112 KB
testcase_14 AC 134 ms
54,084 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