結果

問題 No.69 文字を自由に並び替え
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-26 21:21:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 1,033 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 77,300 KB
実行使用メモリ 37,200 KB
最終ジャッジ日時 2024-05-08 05:25:43
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,148 KB
testcase_01 AC 46 ms
37,012 KB
testcase_02 AC 46 ms
36,720 KB
testcase_03 AC 48 ms
36,928 KB
testcase_04 AC 47 ms
36,944 KB
testcase_05 AC 47 ms
36,576 KB
testcase_06 AC 48 ms
37,052 KB
testcase_07 AC 49 ms
36,788 KB
testcase_08 AC 47 ms
37,200 KB
testcase_09 AC 46 ms
37,072 KB
testcase_10 AC 47 ms
36,884 KB
testcase_11 AC 47 ms
37,088 KB
testcase_12 AC 47 ms
37,052 KB
testcase_13 AC 48 ms
36,912 KB
testcase_14 AC 48 ms
36,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class Main {


    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String A = reader.readLine();
        String B = reader.readLine();

        int[] as = new int[26];
        for (int i = 0; i < A.length(); i++) {
            as[A.charAt(i) - 'a'] += 1;
        }
        int[] bs = new int[26];
        for (int i = 0; i < B.length(); i++) {
            bs[B.charAt(i) - 'a'] += 1;
        }
        if(isSame(as,bs)) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }

    }

    private static boolean isSame(int[] as, int[] bs) {
        for (int i = 0; i < 26; i++) {
            if (as[i] != bs[i]) {
                return false;
            }
        }
        return true;
    }


}

0