結果

問題 No.628 Tagの勢い
ユーザー RyutoRyuto
提出日時 2018-01-31 15:42:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-10-07 22:27:55
合計ジャッジ時間 2,082 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,788 KB
testcase_01 AC 34 ms
53,012 KB
testcase_02 AC 33 ms
52,832 KB
testcase_03 AC 34 ms
54,092 KB
testcase_04 AC 33 ms
53,424 KB
testcase_05 AC 34 ms
53,052 KB
testcase_06 AC 34 ms
52,468 KB
testcase_07 AC 34 ms
52,728 KB
testcase_08 AC 36 ms
53,904 KB
testcase_09 AC 40 ms
52,356 KB
testcase_10 AC 40 ms
53,376 KB
testcase_11 AC 40 ms
54,152 KB
testcase_12 AC 83 ms
76,744 KB
testcase_13 AC 81 ms
76,356 KB
testcase_14 AC 81 ms
76,752 KB
testcase_15 AC 82 ms
76,884 KB
testcase_16 AC 72 ms
71,780 KB
testcase_17 AC 35 ms
53,432 KB
testcase_18 AC 37 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

from operator import itemgetter

n = int(input())
tags = {}
for i in range(n):
    no = input()
    score = [int(x) for x in input().split()]
    tagname = input().split()
    for tag in tagname:
        if tag in tags:
            tags[tag] += score[1]
        else:
            tags[tag] = score[1]

tags = sorted(tags.items(), key=itemgetter(0))
tags = sorted(tags, key=itemgetter(1), reverse=True)

for i in range(min(len(tags), 10)):
    print(' '.join([str(x) for x in tags[i]]))
0