結果
| 問題 | No.628 Tagの勢い |
| コンテスト | |
| ユーザー |
wajima_wataru
|
| 提出日時 | 2018-01-05 21:37:03 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 26 ms / 2,000 ms |
| + 165µs | |
| コード長 | 457 bytes |
| 記録 | |
| コンパイル時間 | 56 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-11 17:34:35 |
| 合計ジャッジ時間 | 1,696 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
N = int(input())
tag_score = dict()
for _ in range(N):
no = input()
num, score = map(int, input().split())
tags = input().split()
for tag in tags:
if tag in tag_score:
tag_score[tag] += score
else:
tag_score[tag] = score
for i, (t, s) in enumerate(sorted(sorted(tag_score.items(), key=lambda x: x[0]), reverse=True, key=lambda x: x[1])):
if i >= 10:
break
print(str(t) + ' ' + str(s))
wajima_wataru