結果

問題 No.69 文字を自由に並び替え
ユーザー Flere0114Flere0114
提出日時 2016-02-10 17:06:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 687 bytes
コンパイル時間 3,788 ms
コンパイル使用メモリ 77,732 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-12-14 06:10:03
合計ジャッジ時間 6,338 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,028 KB
testcase_01 AC 129 ms
54,132 KB
testcase_02 AC 125 ms
53,940 KB
testcase_03 AC 130 ms
53,880 KB
testcase_04 AC 131 ms
53,924 KB
testcase_05 AC 129 ms
53,844 KB
testcase_06 AC 127 ms
53,812 KB
testcase_07 AC 127 ms
53,876 KB
testcase_08 AC 131 ms
53,920 KB
testcase_09 AC 134 ms
54,216 KB
testcase_10 AC 126 ms
53,944 KB
testcase_11 AC 115 ms
52,844 KB
testcase_12 AC 112 ms
52,708 KB
testcase_13 AC 133 ms
54,044 KB
testcase_14 AC 130 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No69 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String A = sc.next();
        String B = sc.next();
        int len = A.length();
        boolean[] c = new boolean[len];
        int index;

        for (int i = 0; i < len; i++) {
            for (int j = 0; j < len; j++) {
                if(A.charAt(i) == B.charAt(j) && !c[j]){
                    c[j] = true;
                    break;
                }else if(j == len - 1){
                    System.out.println("NO");
                    return;
                }
            }
        }
        System.out.println("YES");
    }
}
0