結果

問題 No.2707 Bag of Words Encryption
ユーザー tentententen
提出日時 2024-04-01 15:34:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 1,377 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 78,840 KB
実行使用メモリ 51,900 KB
最終ジャッジ日時 2024-09-30 21:50:31
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,132 KB
testcase_01 AC 53 ms
50,356 KB
testcase_02 AC 76 ms
51,244 KB
testcase_03 AC 58 ms
50,348 KB
testcase_04 AC 75 ms
51,100 KB
testcase_05 AC 69 ms
50,676 KB
testcase_06 AC 74 ms
51,076 KB
testcase_07 AC 96 ms
51,844 KB
testcase_08 AC 93 ms
51,708 KB
testcase_09 AC 95 ms
51,768 KB
testcase_10 AC 86 ms
51,724 KB
testcase_11 AC 79 ms
51,376 KB
testcase_12 AC 97 ms
51,420 KB
testcase_13 AC 99 ms
51,624 KB
testcase_14 AC 86 ms
51,780 KB
testcase_15 AC 87 ms
51,900 KB
testcase_16 AC 86 ms
51,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] counts = new int[26];
        for (char c : sc.next().toCharArray()) {
            counts[c - 'A']++;
        }
        StringBuilder sb = new StringBuilder();
        for (int x : counts) {
            sb.append(x);
        }
        System.out.println(sb);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0