結果

問題 No.2153 何コーダーが何人?
ユーザー first_vilfirst_vil
提出日時 2023-02-03 16:59:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 75,624 KB
最終ジャッジ日時 2023-09-15 12:23:14
合計ジャッジ時間 4,071 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,304 KB
testcase_01 AC 86 ms
75,160 KB
testcase_02 AC 78 ms
71,356 KB
testcase_03 AC 85 ms
75,332 KB
testcase_04 AC 81 ms
71,600 KB
testcase_05 AC 79 ms
71,412 KB
testcase_06 AC 85 ms
75,516 KB
testcase_07 AC 80 ms
71,400 KB
testcase_08 AC 79 ms
71,424 KB
testcase_09 AC 83 ms
75,368 KB
testcase_10 AC 79 ms
71,392 KB
testcase_11 AC 87 ms
75,624 KB
testcase_12 AC 77 ms
71,324 KB
testcase_13 AC 79 ms
71,496 KB
testcase_14 AC 79 ms
71,412 KB
testcase_15 AC 79 ms
71,504 KB
testcase_16 AC 84 ms
75,168 KB
testcase_17 AC 85 ms
75,332 KB
testcase_18 AC 84 ms
75,432 KB
testcase_19 AC 72 ms
71,492 KB
testcase_20 AC 72 ms
71,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=[0]*8
d={}
for _ in range(int(input())):
    s,c=input().split()
    d[s]=int(c)
for k,v in d.items():
    x[v]+=1
for xx in x:
    print(xx)
0