結果

問題 No.69 文字を自由に並び替え
ユーザー kano_townkano_town
提出日時 2014-11-19 09:54:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 3,524 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-05-08 04:35:55
合計ジャッジ時間 5,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,072 KB
testcase_01 AC 112 ms
54,028 KB
testcase_02 AC 109 ms
53,404 KB
testcase_03 AC 117 ms
54,004 KB
testcase_04 AC 102 ms
52,788 KB
testcase_05 AC 115 ms
54,088 KB
testcase_06 AC 114 ms
53,848 KB
testcase_07 AC 107 ms
53,736 KB
testcase_08 AC 113 ms
53,888 KB
testcase_09 AC 102 ms
53,008 KB
testcase_10 AC 116 ms
54,052 KB
testcase_11 AC 103 ms
54,192 KB
testcase_12 AC 105 ms
53,552 KB
testcase_13 AC 110 ms
53,156 KB
testcase_14 AC 120 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder69 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		String b = sc.next();

		for (int i = 0; i < a.length(); i++) {
			if (b.contains("" + a.charAt(i)))
				b = b.substring(0, b.indexOf(a.charAt(i))) + b.substring(b.indexOf(a.charAt(i)) + 1, b.length());
		}
		
		if (b.equals("")) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}

	}

}
0