結果

問題 No.2153 何コーダーが何人?
ユーザー helloprahellopra
提出日時 2022-12-09 22:00:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 65,684 KB
最終ジャッジ日時 2024-10-14 21:56:03
合計ジャッジ時間 2,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,552 KB
testcase_01 AC 56 ms
63,212 KB
testcase_02 AC 49 ms
56,736 KB
testcase_03 AC 55 ms
63,880 KB
testcase_04 AC 53 ms
58,500 KB
testcase_05 AC 52 ms
58,676 KB
testcase_06 AC 57 ms
64,232 KB
testcase_07 AC 54 ms
58,472 KB
testcase_08 AC 50 ms
58,152 KB
testcase_09 AC 56 ms
63,308 KB
testcase_10 AC 51 ms
57,116 KB
testcase_11 AC 59 ms
65,684 KB
testcase_12 AC 49 ms
57,720 KB
testcase_13 AC 52 ms
58,480 KB
testcase_14 AC 51 ms
57,184 KB
testcase_15 AC 49 ms
56,880 KB
testcase_16 AC 56 ms
64,148 KB
testcase_17 AC 57 ms
64,148 KB
testcase_18 AC 56 ms
64,080 KB
testcase_19 AC 43 ms
54,092 KB
testcase_20 AC 42 ms
54,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
D = defaultdict(lambda:-1)
for i in range(N):
	s,c = map(str,input().split())
	c = int(c)
	D[s] = c

c_l = [0] * 8
for i in D.values():
	c_l[i] += 1

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