結果

問題 No.628 Tagの勢い
ユーザー 👑 rin204rin204
提出日時 2021-08-26 19:13:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 77,292 KB
最終ジャッジ日時 2024-11-18 14:30:02
合計ジャッジ時間 2,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,832 KB
testcase_01 AC 40 ms
55,596 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 41 ms
53,812 KB
testcase_05 AC 43 ms
54,436 KB
testcase_06 AC 45 ms
54,588 KB
testcase_07 AC 44 ms
54,108 KB
testcase_08 AC 44 ms
55,652 KB
testcase_09 AC 41 ms
54,992 KB
testcase_10 AC 44 ms
54,552 KB
testcase_11 AC 42 ms
54,976 KB
testcase_12 AC 77 ms
77,292 KB
testcase_13 AC 78 ms
77,156 KB
testcase_14 AC 78 ms
76,752 KB
testcase_15 AC 78 ms
76,784 KB
testcase_16 AC 91 ms
77,040 KB
testcase_17 AC 41 ms
55,044 KB
testcase_18 AC 42 ms
55,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd

n = int(input())
score = dd(int)
for _ in range(n):
    input()
    m, s = map(int, input().split())
    tag = list(input().split())
    for t in tag:
        score[t] += s
        
kv = list(score.items())
kv.sort(key = lambda x:(-x[1], x[0]))
kv = kv[:10]
for row in kv:
    print(*row)
    
0