結果

問題 No.2153 何コーダーが何人?
ユーザー 👑 KazunKazun
提出日時 2022-12-10 00:57:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-10-14 23:22:49
合計ジャッジ時間 2,137 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 56 ms
60,544 KB
testcase_02 AC 48 ms
54,272 KB
testcase_03 AC 56 ms
60,672 KB
testcase_04 AC 52 ms
55,040 KB
testcase_05 AC 50 ms
54,272 KB
testcase_06 AC 56 ms
61,056 KB
testcase_07 AC 51 ms
55,296 KB
testcase_08 AC 48 ms
54,400 KB
testcase_09 AC 54 ms
60,544 KB
testcase_10 AC 49 ms
54,144 KB
testcase_11 AC 59 ms
61,440 KB
testcase_12 AC 50 ms
54,016 KB
testcase_13 AC 50 ms
55,040 KB
testcase_14 AC 50 ms
54,400 KB
testcase_15 AC 48 ms
54,272 KB
testcase_16 AC 57 ms
61,056 KB
testcase_17 AC 57 ms
61,184 KB
testcase_18 AC 56 ms
60,416 KB
testcase_19 AC 41 ms
51,584 KB
testcase_20 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())

    D={}
    for _ in range(N):
        S,C=input().split(); C=int(C)
        D[S]=C

    A=[0]*8
    for S in D:
        A[D[S]]+=1
    return A

#==================================================
print(*solve(),sep="\n")
0