結果

問題 No.628 Tagの勢い
ユーザー emqk5RBe
提出日時 2019-09-25 10:16:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-21 20:10:36
合計ジャッジ時間 1,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
d = defaultdict(int)
num=int(input())
for x in range(num):
    no=int(input())
    tn,po=map(int,input().split())
    ws=input().split()
    for w in ws:
        d[w]+=po

d=sorted(d.items(), key=lambda x:(x[1]*-1,x[0]))
for i in d[:10]:
    print(i[0]+" "+str(i[1]))
0