結果

問題 No.1592 Tenkei 90
ユーザー NASU41NASU41
提出日時 2021-05-08 00:41:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 812 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 75,060 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-07-01 14:18:44
合計ジャッジ時間 5,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,432 KB
testcase_01 AC 106 ms
40,804 KB
testcase_02 AC 108 ms
40,580 KB
testcase_03 AC 120 ms
41,588 KB
testcase_04 AC 110 ms
41,332 KB
testcase_05 AC 114 ms
41,604 KB
testcase_06 AC 121 ms
40,948 KB
testcase_07 AC 116 ms
41,512 KB
testcase_08 AC 120 ms
41,376 KB
testcase_09 AC 119 ms
41,612 KB
testcase_10 AC 108 ms
41,464 KB
testcase_11 AC 119 ms
41,276 KB
testcase_12 AC 109 ms
41,336 KB
testcase_13 AC 109 ms
40,260 KB
testcase_14 AC 120 ms
41,128 KB
testcase_15 AC 122 ms
41,164 KB
testcase_16 AC 113 ms
41,180 KB
testcase_17 AC 120 ms
41,624 KB
testcase_18 AC 110 ms
39,948 KB
testcase_19 AC 109 ms
40,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    //各アルファベットの出現頻度をint[]の形で返す.
    private static int[] charCount(String s){
        int[] count = new int[128]; //ASCII文字は[0, 127]で表される
        for(int i=0; i<s.length(); i++){
            count[s.charAt(i)]++;
        }
        return count;
    }
    public static void main(String[] args) throws Exception{
        final Scanner sc = new Scanner(System.in);

        String S = sc.next();
        //Arrays::equalsは, 各要素の等価性を確認してくれる
        //自前でやるならforループが必要. charCount(S)==charCount("kyoprotenkei90") は不可
        if(Arrays.equals(charCount(S), charCount("kyoprotenkei90"))) System.out.println("Yes");
        else System.out.println("No");
    }
}
0