結果

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

ソースコード

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
for i ,j in sorted(d.items(),key=lambda x:(-x[1])):
 print(i,j)
0