結果

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

ソースコード

diff #

N = int(input())
tag_score = dict()
for _ in range(N):
    no = input()
    num, score = map(int, input().split())
    tags = input().split()
    for tag in tags:
        if tag in tag_score:
            tag_score[tag] += score
        else:
            tag_score[tag] = score
for i, (t, s) in enumerate(sorted(sorted(tag_score.items(), key=lambda x: x[0]), reverse=True, key=lambda x: x[1])):
    if i >= 10:
        break
    print(str(t) + ' ' + str(s))
0