結果

問題 No.628 Tagの勢い
ユーザー ああいいああいい
提出日時 2022-03-30 19:13:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 77,420 KB
最終ジャッジ日時 2024-04-27 08:58:16
合計ジャッジ時間 2,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,396 KB
testcase_01 AC 44 ms
54,308 KB
testcase_02 AC 42 ms
53,604 KB
testcase_03 AC 43 ms
54,612 KB
testcase_04 AC 43 ms
55,444 KB
testcase_05 AC 43 ms
54,108 KB
testcase_06 AC 42 ms
55,576 KB
testcase_07 AC 44 ms
54,868 KB
testcase_08 AC 46 ms
54,648 KB
testcase_09 AC 42 ms
54,752 KB
testcase_10 AC 45 ms
55,764 KB
testcase_11 AC 44 ms
55,068 KB
testcase_12 AC 82 ms
77,296 KB
testcase_13 AC 84 ms
77,228 KB
testcase_14 AC 88 ms
77,420 KB
testcase_15 AC 89 ms
76,960 KB
testcase_16 AC 102 ms
77,320 KB
testcase_17 AC 45 ms
54,540 KB
testcase_18 AC 44 ms
54,192 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