結果

問題 No.2153 何コーダーが何人?
ユーザー terasaterasa
提出日時 2022-12-09 21:49:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-10-14 21:31:10
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple, Callable, TypeVar, Optional
import sys
import itertools
import heapq
import bisect
import math
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


N = int(input())
D = {}
for _ in range(N):
    s, c = input().split()
    D[s] = int(c)

ans = [0] * 8
for v in D.values():
    ans[v] += 1
print(*ans, sep='\n')
0