結果
問題 | No.2707 Bag of Words Encryption |
ユーザー | rotti_coder |
提出日時 | 2024-03-31 13:33:42 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 840 ms |
コンパイル使用メモリ | 73,920 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 18:03:24 |
合計ジャッジ時間 | 1,492 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 |
ソースコード
#include<iostream> #include<vector> using namespace std; int main() { vector<int>ans(26,0); int n; string s; cin >> n >> s; for(int i=0;i<n;i++)ans[(int)s[i]-65]++; for(int i=0;i<26;i++)cout << ans[i]; cout << endl; }