結果

問題 No.69 文字を自由に並び替え
ユーザー dazydazy
提出日時 2016-09-05 23:18:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 853 bytes
コンパイル時間 3,765 ms
コンパイル使用メモリ 79,128 KB
実行使用メモリ 54,708 KB
最終ジャッジ日時 2024-12-14 06:22:05
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,952 KB
testcase_01 AC 137 ms
53,960 KB
testcase_02 AC 130 ms
54,020 KB
testcase_03 AC 131 ms
54,108 KB
testcase_04 AC 138 ms
54,152 KB
testcase_05 AC 134 ms
54,220 KB
testcase_06 AC 130 ms
53,800 KB
testcase_07 AC 130 ms
54,168 KB
testcase_08 AC 133 ms
54,092 KB
testcase_09 AC 138 ms
54,236 KB
testcase_10 AC 140 ms
54,708 KB
testcase_11 AC 132 ms
54,160 KB
testcase_12 AC 131 ms
54,208 KB
testcase_13 AC 137 ms
54,096 KB
testcase_14 AC 136 ms
54,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String X = scan.next();
        String Y = scan.next();

        if (X.length() < 1||X.length() > 10||
            Y.length() < 1||Y.length() > 10||
            X.length() != Y.length()) System.exit(1);
        char[] strX = X.toCharArray();
        char[] strY = Y.toCharArray();
        for (int i = 0; i < X.length(); i++) {
            if (Character.isUpperCase(strX[i])||Character.isUpperCase(strY[i])) System.exit(1);
        }

        Arrays.sort(strX);
        Arrays.sort(strY);
        for (int i = 0; i < X.length(); i++) {
            if (strX[i]!=strY[i]) {
                System.out.println("NO");
                System.exit(0);
            }
        }

        System.out.println("YES");
    }
}
0