結果

問題 No.2153 何コーダーが何人?
ユーザー mo124121mo124121
提出日時 2022-12-02 21:58:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-10-09 23:14:28
合計ジャッジ時間 2,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,376 KB
testcase_01 AC 65 ms
62,720 KB
testcase_02 AC 64 ms
62,976 KB
testcase_03 AC 70 ms
66,048 KB
testcase_04 AC 67 ms
64,512 KB
testcase_05 AC 65 ms
64,128 KB
testcase_06 AC 75 ms
66,944 KB
testcase_07 AC 69 ms
64,768 KB
testcase_08 AC 64 ms
63,104 KB
testcase_09 AC 72 ms
65,792 KB
testcase_10 AC 65 ms
63,872 KB
testcase_11 AC 73 ms
67,456 KB
testcase_12 AC 61 ms
63,104 KB
testcase_13 AC 66 ms
64,256 KB
testcase_14 AC 65 ms
63,616 KB
testcase_15 AC 64 ms
63,616 KB
testcase_16 AC 72 ms
66,688 KB
testcase_17 AC 72 ms
66,432 KB
testcase_18 AC 70 ms
66,048 KB
testcase_19 AC 47 ms
53,504 KB
testcase_20 AC 46 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def val_N(N):
    if 1 <= N <= 2 * 10**3:
        pass
    else:
        raise Exception


def val_C(C):
    if 0 <= C <= 7:
        pass
    else:
        raise Exception


def val_S(S):
    for c in S:
        if c not in "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ":
            raise Exception


N = int(input())
val_N(N)
count = Counter()
for _ in range(N):
    S, C = input().split()
    C = int(C)
    count[S] = C
    val_S(S)
    val_C(C)

ans = [0] * 8
for v in count.values():
    ans[v] += 1


print(*ans, sep="\n")
0