結果

問題 No.2707 Bag of Words Encryption
ユーザー marble72
提出日時 2024-03-31 14:05:12
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 1,804 ms
コンパイル使用メモリ 193,836 KB
最終ジャッジ日時 2025-02-20 16:54:13
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main(){
    int N;
    cin >> N;
    string s;
    cin >> s;
    vector<int> ans(26,0);
    for(int i=0;i<N;i++){
        char x = s[i];
        int place = (int)x-(int)'A';
        ans[place]++;
    }
    for(int i=0;i<26;i++){
        cout << ans[i];
    }
    cout << endl;
}
0