結果
| 問題 |
No.2153 何コーダーが何人?
|
| コンテスト | |
| ユーザー |
_yurimoir
|
| 提出日時 | 2022-12-09 21:21:42 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 254 bytes |
| コンパイル時間 | 2,810 ms |
| コンパイル使用メモリ | 244,196 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-14 18:55:24 |
| 合計ジャッジ時間 | 3,639 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 17 WA * 2 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
vector<int> cnt(8,0);
for(int i=0;i<n;i++){
string s;
int c;
cin>>s>>c;
cnt[c]++;
}
for(int i=0;i<8;i++)cout<<cnt[i]<<endl;
}
_yurimoir