結果

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

ソースコード

diff #

n=int(input())
d={}
for i in range(n):
    input()
    a,b=map(int,input().split())
    c=input().split()
    for j in range(a):
        e=d.get(c[j])
        if e:
            d[c[j]]=b+e
        else:
            d[c[j]]=b
g=sorted(d.items(),key=lambda x:(-x[1],x[0]))
for i,j in g[:10]:
    print(i,j)
0