結果
| 問題 | No.2153 何コーダーが何人? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-09-08 20:30:43 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 187 bytes |
| 記録 | |
| コンパイル時間 | 232 ms |
| コンパイル使用メモリ | 95,988 KB |
| 実行使用メモリ | 83,456 KB |
| 最終ジャッジ日時 | 2026-07-30 13:40:40 |
| 合計ジャッジ時間 | 3,724 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 19 |
ソースコード
from collections import defaultdict n = int(input()) d = defaultdict(int) for _ in range(n): s, c = input().split() d[s] = int(c) c = [0] * 8 for i in d.items(): c[i[1]] += 1 print(*c)