結果

問題 No.628 Tagの勢い
ユーザー GrayCoderGrayCoder
提出日時 2018-01-05 22:21:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-07 22:13:10
合計ジャッジ時間 1,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    N = int(input())
    D = defaultdict(int)
    for _ in range(N):
        _ = input()
        _, i = map(int, input().split())
        for s in input().split():
            D[s] += i

    tag = sorted(D.items())
    tag = sorted(tag, key=lambda x: x[1], reverse=True)
    i = 0
    while i < min(len(tag), 10):
        print(*tag[i], sep=' ')
        i += 1

main()
0