結果
問題 | No.2153 何コーダーが何人? |
ユーザー | futamegawa |
提出日時 | 2023-08-13 11:28:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 513 bytes |
コンパイル時間 | 1,905 ms |
コンパイル使用メモリ | 177,612 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 05:54:02 |
合計ジャッジ時間 | 2,812 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using llu = long long unsigned; vector<ll> dx = { 0, 0, -1, 1}; vector<ll> dy = {-1, 1, 0, 0}; #define MOD 1000000007 int main() { int N; cin >> N; map<string, int> data; for (int i=0; i<N; i++) { string S; int C; cin >> S >> C; data[S] = C; } vector<int> ret(8, 0); for (auto x : data) { ret[x.second]++; } for (auto x : ret) { cout << x << endl; } return 0; }