結果
問題 | No.2153 何コーダーが何人? |
ユーザー | mo124121 |
提出日時 | 2022-11-09 11:50:41 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 57 ms / 2,000 ms |
コード長 | 208 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 82,772 KB |
実行使用メモリ | 63,488 KB |
最終ジャッジ日時 | 2024-10-09 07:01:41 |
合計ジャッジ時間 | 1,891 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 19 |
ソースコード
from collections import Counter N=int(input()) person={} for _ in range(N): s,c=input().split() c=int(c) person[s]=c count=[0]*8 for v in person.values(): count[v]+=1 print(*count,sep="\n")