結果
| 問題 | No.2153 何コーダーが何人? |
| コンテスト | |
| ユーザー |
sasa8uyauya
|
| 提出日時 | 2024-09-01 13:59:20 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 35 ms / 2,000 ms |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 1,870 ms |
| コンパイル使用メモリ | 84,820 KB |
| 実行使用メモリ | 63,492 KB |
| 最終ジャッジ日時 | 2026-04-04 00:00:49 |
| 合計ジャッジ時間 | 3,840 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 19 |
ソースコード
n=int(input())
d={}
for i in range(n):
s,c=input().split()
c=int(c)
d[s]=c
a=[0]*8
for s in d:
a[d[s]]+=1
print(*a,sep="\n")
sasa8uyauya