結果

問題 No.69 文字を自由に並び替え
ユーザー Flere0114Flere0114
提出日時 2016-02-10 17:06:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 687 bytes
コンパイル時間 3,217 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-05-08 05:03:32
合計ジャッジ時間 5,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,220 KB
testcase_01 AC 126 ms
54,232 KB
testcase_02 AC 125 ms
54,008 KB
testcase_03 AC 110 ms
52,748 KB
testcase_04 AC 123 ms
54,056 KB
testcase_05 AC 123 ms
53,960 KB
testcase_06 AC 124 ms
54,068 KB
testcase_07 AC 128 ms
53,976 KB
testcase_08 AC 124 ms
54,060 KB
testcase_09 AC 125 ms
54,008 KB
testcase_10 AC 123 ms
53,908 KB
testcase_11 AC 125 ms
54,136 KB
testcase_12 AC 127 ms
53,956 KB
testcase_13 AC 122 ms
53,880 KB
testcase_14 AC 122 ms
54,000 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