結果

問題 No.69 文字を自由に並び替え
ユーザー packer_jppacker_jp
提出日時 2017-01-21 19:28:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 973 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-05-08 05:20:18
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,212 KB
testcase_01 AC 110 ms
40,240 KB
testcase_02 AC 107 ms
40,108 KB
testcase_03 AC 107 ms
39,936 KB
testcase_04 AC 107 ms
40,220 KB
testcase_05 AC 119 ms
40,888 KB
testcase_06 AC 118 ms
41,336 KB
testcase_07 AC 114 ms
41,280 KB
testcase_08 AC 115 ms
40,564 KB
testcase_09 AC 116 ms
40,960 KB
testcase_10 AC 106 ms
39,960 KB
testcase_11 AC 112 ms
40,860 KB
testcase_12 AC 108 ms
40,072 KB
testcase_13 AC 107 ms
40,220 KB
testcase_14 AC 111 ms
40,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Practice {
    public static void main(String args[]){
        Scanner scanner=new Scanner(System.in);
        String A=scanner.next(),B=scanner.next();
        String alphabet="abcdefghijklmnopqrstuvwxyz";
        int[] Amatch=new int[alphabet.length()],Bmatch=new int[alphabet.length()];
        for(int i=0;i<alphabet.length();i++){
            Amatch[i]=0;
            Bmatch[i]=0;
        }
        for(int i=0;i<A.length();i++){
            for(int j=0;j<alphabet.length();j++){
                if(A.charAt(i)==alphabet.charAt(j)){
                    Amatch[j]++;
                }
                if(B.charAt(i)==alphabet.charAt(j)){
                    Bmatch[j]++;
                }
            }
        }
        for(int i=0;i<alphabet.length();i++){
            if(Amatch[i]!=Bmatch[i]){
                System.out.println("NO");
                return;
            }
        }
        System.out.println("YES");
    }
}
0