結果

問題 No.628 Tagの勢い
ユーザー wajima_wataruwajima_wataru
提出日時 2018-01-05 21:34:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-07 22:06:38
合計ジャッジ時間 1,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8 WA * 11
権限があれば一括ダウンロードができます

ソースコード

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(tag_score.items(), reverse=True, key=lambda x: x[1])):
    if i >= 10:
        break
    print(str(t) + ' ' + str(s))
0