結果
| 問題 |
No.2707 Bag of Words Encryption
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-03-31 14:46:51 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 216 bytes |
| コンパイル時間 | 1,922 ms |
| コンパイル使用メモリ | 195,132 KB |
| 最終ジャッジ日時 | 2025-02-20 17:25:20 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int N; cin >> N;
string s; cin >> s;
vector<int> ap(26);
for(auto c : s) ap.at(c-'A')++;
for(auto a : ap) cout << a;
cout << endl;
}