結果
問題 | No.2153 何コーダーが何人? |
ユーザー |
![]() |
提出日時 | 2024-04-29 17:21:33 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 470 bytes |
コンパイル時間 | 2,274 ms |
コンパイル使用メモリ | 202,340 KB |
最終ジャッジ日時 | 2025-02-21 09:39:17 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> using namespace std; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } int main() { fast_io(); int n; cin >> n; map<string, int> mp; for (int i = 0; i < n; i++) { string s; int c; cin >> s >> c; mp[s] = c; } vector<int> cnt(8); for (auto [_, v] : mp) { cnt[v]++; } for (int i = 0; i < 8; i++) { cout << cnt[i] << "\n"; } }