結果

問題 No.628 Tagの勢い
ユーザー gorugo30gorugo30
提出日時 2021-02-24 11:09:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 77,372 KB
最終ジャッジ日時 2024-09-24 11:24:19
合計ジャッジ時間 2,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,744 KB
testcase_01 AC 35 ms
52,872 KB
testcase_02 AC 34 ms
53,696 KB
testcase_03 AC 34 ms
53,184 KB
testcase_04 AC 34 ms
52,980 KB
testcase_05 AC 35 ms
52,608 KB
testcase_06 AC 34 ms
52,800 KB
testcase_07 AC 36 ms
52,212 KB
testcase_08 AC 35 ms
53,096 KB
testcase_09 AC 35 ms
53,348 KB
testcase_10 AC 37 ms
53,480 KB
testcase_11 AC 37 ms
53,512 KB
testcase_12 AC 68 ms
75,336 KB
testcase_13 AC 70 ms
75,240 KB
testcase_14 AC 70 ms
75,136 KB
testcase_15 AC 68 ms
75,476 KB
testcase_16 AC 87 ms
77,372 KB
testcase_17 AC 36 ms
53,692 KB
testcase_18 AC 35 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dic = {}
for i in range(N):
    no = int(input())
    M, S = map(int, input().split())
    tags = list(input().split())
    for t in tags:
        dic[t] = dic.get(t, 0) + S
l = [[k, v] for k, v in dic.items()]
l.sort(key = lambda x: (-x[1], x[0]))
for i in range(min(len(l), 10)):
    print(l[i][0], l[i][1])
0