結果

問題 No.628 Tagの勢い
ユーザー ああいいああいい
提出日時 2022-03-30 19:13:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-11-15 09:44:50
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 42 ms
53,120 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 45 ms
53,504 KB
testcase_05 AC 43 ms
53,120 KB
testcase_06 AC 43 ms
53,248 KB
testcase_07 AC 45 ms
53,504 KB
testcase_08 AC 43 ms
53,504 KB
testcase_09 AC 42 ms
53,504 KB
testcase_10 AC 44 ms
53,888 KB
testcase_11 AC 43 ms
53,888 KB
testcase_12 AC 81 ms
76,672 KB
testcase_13 AC 81 ms
76,928 KB
testcase_14 AC 82 ms
76,800 KB
testcase_15 AC 84 ms
76,800 KB
testcase_16 AC 95 ms
77,056 KB
testcase_17 AC 43 ms
53,248 KB
testcase_18 AC 43 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

from collections import defaultdict
d = defaultdict(int)

for _ in range(N):
    n = input()
    M,S = map(int,input().split())
    for t in input().split():
        d[t] += S
l = []
for t in d:
    l.append((-d[t],t))
l.sort()
for p,t in l[:10]:
    p = -p
    print(t,p)
0