結果

問題 No.69 文字を自由に並び替え
ユーザー koukonkokoukonko
提出日時 2015-12-10 12:22:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 843 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-05-08 05:01:15
合計ジャッジ時間 3,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,788 KB
testcase_01 AC 51 ms
36,980 KB
testcase_02 AC 53 ms
36,996 KB
testcase_03 AC 53 ms
36,656 KB
testcase_04 AC 54 ms
36,976 KB
testcase_05 AC 54 ms
36,908 KB
testcase_06 AC 54 ms
37,188 KB
testcase_07 AC 53 ms
36,976 KB
testcase_08 AC 53 ms
36,964 KB
testcase_09 AC 51 ms
37,248 KB
testcase_10 AC 52 ms
36,788 KB
testcase_11 AC 54 ms
37,112 KB
testcase_12 AC 51 ms
37,232 KB
testcase_13 AC 51 ms
36,780 KB
testcase_14 AC 51 ms
36,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			String first = buff.readLine();
			String second = buff.readLine();
			StringBuilder build = new StringBuilder(second);

			for(int i = 0; i < first.length(); ++i){
				char ch = first.charAt(i);
				if(build.indexOf(ch+"") == -1){
					break;
				}else{
					build.deleteCharAt(build.indexOf(ch+""));
				}
			}

			if(build.toString().length() > 0){
				System.out.println("NO");
			}else{
				System.out.println("YES");
			}

		} catch (NumberFormatException e) {
			e.getStackTrace();
		} catch (IOException e) {
			e.getStackTrace();
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0