結果
| 問題 |
No.2153 何コーダーが何人?
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-20 20:15:54 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 53 ms / 2,000 ms |
| コード長 | 211 bytes |
| コンパイル時間 | 149 ms |
| コンパイル使用メモリ | 82,156 KB |
| 実行使用メモリ | 62,204 KB |
| 最終ジャッジ日時 | 2025-03-20 20:16:30 |
| 合計ジャッジ時間 | 1,872 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 19 |
ソースコード
n = int(input())
latest_color = {}
for _ in range(n):
s, c = input().split()
latest_color[s] = int(c)
count = [0] * 8
for c in latest_color.values():
count[c] += 1
for num in count:
print(num)
lam6er