結果
| 問題 |
No.2707 Bag of Words Encryption
|
| コンテスト | |
| ユーザー |
Today03
|
| 提出日時 | 2024-03-31 20:03:40 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 441 bytes |
| コンパイル時間 | 1,821 ms |
| コンパイル使用メモリ | 196,740 KB |
| 最終ジャッジ日時 | 2025-02-20 18:17:31 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
#ifdef LOCAL
#include "./debug.cpp"
#else
#define debug(...)
#define print_line
#endif
using namespace std;
using ll = long long;
int main() {
int N;
cin >> N;
string S;
cin >> S;
vector<int> cnt(26, 0);
for (int i = 0; i < N; i++) {
cnt[S[i] - 'A']++;
}
string ans = "";
for (int i = 0; i < 26; i++) {
ans += to_string(cnt[i]);
}
cout << ans << endl;
}
Today03