結果

問題 No.2707 Bag of Words Encryption
ユーザー sysnote8mainsysnote8main
提出日時 2024-04-11 22:21:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 54,604 KB
最終ジャッジ日時 2024-10-02 21:43:29
合計ジャッジ時間 5,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,968 KB
testcase_01 AC 125 ms
53,952 KB
testcase_02 AC 182 ms
54,120 KB
testcase_03 AC 140 ms
54,040 KB
testcase_04 AC 185 ms
54,148 KB
testcase_05 AC 153 ms
53,976 KB
testcase_06 AC 180 ms
54,336 KB
testcase_07 AC 185 ms
54,092 KB
testcase_08 AC 183 ms
54,028 KB
testcase_09 AC 189 ms
54,604 KB
testcase_10 AC 172 ms
54,476 KB
testcase_11 AC 185 ms
54,360 KB
testcase_12 AC 183 ms
54,424 KB
testcase_13 AC 183 ms
54,200 KB
testcase_14 AC 185 ms
54,152 KB
testcase_15 AC 183 ms
54,384 KB
testcase_16 AC 187 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);sc.nextInt();
        int[] cnt = new int[26];
        for(char c: sc.next().toCharArray()) {
            cnt[(c - 'A')]++;
        }
        StringBuilder s = new StringBuilder();
        for(int i:cnt) {
            s.append(i);
        }
        System.out.println(s);
    }
}
0