結果
| 問題 |
No.2153 何コーダーが何人?
|
| コンテスト | |
| ユーザー |
sasa8uyauya
|
| 提出日時 | 2024-09-01 13:59:20 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 51 ms / 2,000 ms |
| コード長 | 128 bytes |
| コンパイル時間 | 420 ms |
| コンパイル使用メモリ | 82,232 KB |
| 実行使用メモリ | 63,700 KB |
| 最終ジャッジ日時 | 2024-09-01 13:59:22 |
| 合計ジャッジ時間 | 2,635 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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