結果

問題 No.2153 何コーダーが何人?
ユーザー zhtluo
提出日時 2022-12-09 21:34:53
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 200,920 KB
最終ジャッジ日時 2025-02-09 07:30:27
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 19
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d", &N);
      |     ~~~~~^~~~~~~~~~
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf(" %s%d", tmp, &u);
      |         ~~~~~^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

int N;
std::map<std::string, int> map;
int cnt[8];

int main() {
    scanf("%d", &N);
    for (int i = 0, u; i < N; ++i) {
        static char tmp[500];
        scanf(" %s%d", tmp, &u);
        map[std::string(tmp)] = u;
    }
    for (auto &it: map) {
        ++cnt[it.second];
    }
    for (int i = 0; i <= 7; ++i) printf("%d\n", cnt[i]);
}
0