結果

問題 No.628 Tagの勢い
ユーザー naimonon77naimonon77
提出日時 2018-01-17 10:52:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-16 20:05:25
合計ジャッジ時間 1,956 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
12,416 KB
testcase_01 AC 44 ms
12,416 KB
testcase_02 AC 42 ms
12,288 KB
testcase_03 AC 45 ms
12,416 KB
testcase_04 AC 45 ms
12,416 KB
testcase_05 AC 43 ms
12,288 KB
testcase_06 AC 44 ms
12,416 KB
testcase_07 AC 42 ms
12,416 KB
testcase_08 AC 43 ms
12,416 KB
testcase_09 AC 44 ms
12,416 KB
testcase_10 AC 42 ms
12,288 KB
testcase_11 AC 43 ms
12,288 KB
testcase_12 AC 53 ms
12,416 KB
testcase_13 AC 54 ms
12,288 KB
testcase_14 AC 54 ms
12,416 KB
testcase_15 AC 53 ms
12,288 KB
testcase_16 AC 52 ms
12,288 KB
testcase_17 AC 43 ms
12,288 KB
testcase_18 AC 45 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

from queue import Queue
import sys
import subprocess
import json
import time
import math
import re
#import sqlite3
import random
#import numpy as np
#from sklearn.datasets import fetch_mldata
#from statistics import mean, median, variance, stdev
#from chainer import cuda, Variable, FunctionSet, optimizers
#import chainer.functions as F

N = int(input())
dic = {}
for i in range(N):
    No = int(input())
    M, S = map(int, input().split())
    Tag = list(input().split())
    for s in Tag:
        if (not s in dic): dic[s] = 0
        dic[s] += S

list1 = [s for s in dic]
list1.sort()
list1.sort(key=lambda x: dic[x], reverse=True)
for i in range( min(10, len(list1)) ):
    s = list1[i]
    print(s, dic[s])
    


0