結果

問題 No.628 Tagの勢い
ユーザー convexineqconvexineq
提出日時 2021-03-03 18:17:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 77,692 KB
最終ジャッジ日時 2024-10-03 07:15:37
合計ジャッジ時間 1,919 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,544 KB
testcase_01 AC 37 ms
55,132 KB
testcase_02 AC 34 ms
53,500 KB
testcase_03 AC 35 ms
55,280 KB
testcase_04 AC 34 ms
53,568 KB
testcase_05 AC 37 ms
55,176 KB
testcase_06 AC 38 ms
54,060 KB
testcase_07 AC 36 ms
55,236 KB
testcase_08 AC 38 ms
54,704 KB
testcase_09 AC 37 ms
55,112 KB
testcase_10 AC 37 ms
54,244 KB
testcase_11 AC 36 ms
55,364 KB
testcase_12 AC 73 ms
77,076 KB
testcase_13 AC 67 ms
77,152 KB
testcase_14 AC 68 ms
77,080 KB
testcase_15 AC 68 ms
76,912 KB
testcase_16 AC 80 ms
77,692 KB
testcase_17 AC 36 ms
54,100 KB
testcase_18 AC 35 ms
54,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
from collections import defaultdict
d = defaultdict(int)
for _ in range(n):
    input()
    m,s = map(int,input().split())
    for t in input().split():
        d[t] += s
lst = [(-v,k) for k,v in d.items()]
lst.sort()
for v,k in lst[:10]:
    print(k,-v)
0