結果

問題 No.2153 何コーダーが何人?
ユーザー miho-4miho-4
提出日時 2023-08-13 16:34:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 62,620 KB
最終ジャッジ日時 2024-11-21 12:39:54
合計ジャッジ時間 2,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,464 KB
testcase_01 AC 48 ms
61,632 KB
testcase_02 AC 42 ms
55,352 KB
testcase_03 AC 47 ms
60,820 KB
testcase_04 AC 45 ms
56,492 KB
testcase_05 AC 46 ms
55,460 KB
testcase_06 AC 48 ms
61,996 KB
testcase_07 AC 45 ms
57,064 KB
testcase_08 AC 41 ms
54,648 KB
testcase_09 AC 47 ms
61,432 KB
testcase_10 AC 44 ms
55,220 KB
testcase_11 AC 52 ms
62,324 KB
testcase_12 AC 43 ms
55,792 KB
testcase_13 AC 44 ms
55,596 KB
testcase_14 AC 43 ms
55,464 KB
testcase_15 AC 42 ms
54,936 KB
testcase_16 AC 50 ms
61,936 KB
testcase_17 AC 51 ms
61,400 KB
testcase_18 AC 50 ms
62,620 KB
testcase_19 AC 36 ms
53,128 KB
testcase_20 AC 36 ms
51,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
d=dict()
for _ in range(n):
	k,v=input().split()
	d[k]=v
C=[0]*8
for k,v in d.items():
	C[int(v)]+=1
for e in C:
	print(e)
0