結果

問題 No.628 Tagの勢い
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-11-13 11:13:57
言語 Ruby
(3.2.2)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 11,912 KB
実行使用メモリ 16,168 KB
最終ジャッジ日時 2023-10-21 19:40:32
合計ジャッジ時間 2,665 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
16,052 KB
testcase_01 AC 77 ms
16,052 KB
testcase_02 AC 73 ms
16,052 KB
testcase_03 AC 73 ms
16,052 KB
testcase_04 AC 74 ms
16,052 KB
testcase_05 AC 76 ms
16,052 KB
testcase_06 AC 77 ms
16,052 KB
testcase_07 AC 75 ms
16,052 KB
testcase_08 AC 75 ms
16,052 KB
testcase_09 AC 74 ms
16,052 KB
testcase_10 AC 78 ms
16,052 KB
testcase_11 AC 83 ms
16,052 KB
testcase_12 AC 86 ms
16,168 KB
testcase_13 AC 89 ms
16,168 KB
testcase_14 AC 87 ms
16,168 KB
testcase_15 AC 88 ms
16,168 KB
testcase_16 AC 83 ms
16,152 KB
testcase_17 AC 75 ms
16,052 KB
testcase_18 AC 74 ms
16,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n
Main.rb:5: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

N = gets.to_i
T = Hash.new(0)
N.times do
  n = gets.to_i
  m,s = gets.split.map(&:to_i)
  gets.split.each do |t|
    T[t] += s
  end
end
puts T.sort_by{|k,v| [-v,k] }.take(10).map{|k,v| "#{k} #{v}" }
0