結果
問題 | No.2153 何コーダーが何人? |
ユーザー | KKT89 |
提出日時 | 2023-02-26 18:00:05 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 627 bytes |
コンパイル時間 | 2,754 ms |
コンパイル使用メモリ | 220,852 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 07:44:38 |
合計ジャッジ時間 | 3,464 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 19 |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef unsigned long long int ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<int> a(8); map<string,int> mp; for (int i = 0; i < n; ++i) { string s; cin >> s; int j; cin >> j; mp[s] = j; } for(auto &p:mp){ a[p.second]++; } for (int i = 0; i < 8; ++i) { cout << a[i] << endl; } }