結果

問題 No.69 文字を自由に並び替え
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 21:36:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 3,538 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-12-14 06:31:22
合計ジャッジ時間 6,357 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,980 KB
testcase_01 AC 130 ms
53,512 KB
testcase_02 AC 135 ms
53,720 KB
testcase_03 AC 132 ms
53,996 KB
testcase_04 AC 128 ms
53,760 KB
testcase_05 AC 133 ms
53,944 KB
testcase_06 AC 131 ms
54,132 KB
testcase_07 AC 132 ms
54,160 KB
testcase_08 AC 135 ms
53,776 KB
testcase_09 AC 133 ms
53,888 KB
testcase_10 AC 127 ms
53,696 KB
testcase_11 AC 129 ms
53,728 KB
testcase_12 AC 131 ms
53,628 KB
testcase_13 AC 132 ms
53,968 KB
testcase_14 AC 134 ms
53,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Narabikae {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		char[] A = s.nextLine().toCharArray();
		StringBuilder B = new StringBuilder(s.nextLine());
		int length = B.length();
		s.close();
		int n = 0;
		for(char c : A){
			int t = B.indexOf(Character.toString(c));
			if(t >= 0){
				n++;
				B.deleteCharAt(t);
			}
		}
		
		if(n == length){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0