結果
問題 | No.2153 何コーダーが何人? |
ユーザー | ux |
提出日時 | 2022-12-10 16:23:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 2,922 bytes |
コンパイル時間 | 2,730 ms |
コンパイル使用メモリ | 230,316 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 23:45:37 |
合計ジャッジ時間 | 3,276 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 3 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //#include <atcoder/all> //atcoder用 //using namespace atcoder; //atcoder用 #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") using ll = long long; using ld = long double; using vi = vector<int>; using vl = vector<long long>; using vc = vector<char>; using vs = vector<string>; using vb = vector<bool>; using Graph = vector<vector<int>>; //using pri = priority_queue<int>; //最大値 //using pri = priority_queue<int, vector<int>, greater<int>>; //最小値 #define _GLIBCXX_DEBUG #define endl "\n" #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(f,c,... ) (([&](decltype((c)) cccc) { return (f)(std::begin(cccc), std::end(cccc), ## __VA_ARGS__); })(c)) const int INF = 1e9; const int MININF = -1e9; const ll LINF = 1e18; const int MOD = 1e9+7; const int MODD = 998244353; // 4方向 vi vx={0,1,0,-1}; vi vy={1,0,-1,0}; // a<bならaをbに更新 template <class T> bool chmax(T &a, const T& b){ if(a<b){ a=b; return true; } return false; } // a>bならaをbに更新 template <typename T> bool chmin(T &a, const T& b){ if(a>b){ a=b; return true; } return false; } // 素数判定 bool prime(ll N){ if(N==1)return false; for (ll i=2;i*i<=N;i++){ if (N%i == 0)return false; } return true; } // 約数列挙 vl factor(ll X){ vl ans; for(ll i=1;i*i<=X;i++){ if(X%i!=0){ continue; } ans.push_back(i); if(i!=X/i){ ans.push_back(X/i); } } return ans; } // 素因数分解 vl primefactor(ll N){ vl ans; for(ll i=2;i*i<=N;i++){ while(N%i==0){ N/=i; ans.emplace_back(i); } } if(2<=N)ans.emplace_back(N); return ans; } // エラトステネスの篩 vb Eratosthenes(ll n){ vb prime(n+1,true); prime[0]=prime[1]=false; for(ll i=2;i+i<=n;i++){ if(!prime[i])continue; for(ll j=i*2;j<=n;j+=i){ prime[j]=false; } } return prime; } // 一次元座標圧縮 vl compress(vl &A){ vl B=A; ALL(sort,B); B.erase(unique(B.begin(),B.end()),B.end()); vl ans(A.size()); for(int i=0;i<A.size();i++){ ans[i]=lower_bound(B.begin(),B.end(),A[i])-B.begin(); } return ans; } // 最大公約数 ll gcd(ll A, ll B){ if(B==0)return A; return gcd(B,A%B); } // 最小公倍数 ll lcm(ll A, ll B){ return A / gcd(A, B) * B; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; map<string,int> mp; set<string> st; rep(i,N){ string S; int C; cin>>S>>C; mp[S]=C; st.insert(S); } vi ans(8,0); for(auto i:st){ ans[mp[i]]++; } for(auto i:ans)cout<<i<<endl; }