結果

問題 No.628 Tagの勢い
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-11-13 11:13:57
言語 Ruby
(3.2.1 )
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 11,380 KB
実行使用メモリ 15,320 KB
最終ジャッジ日時 2023-07-21 19:26:38
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
15,204 KB
testcase_01 AC 82 ms
15,012 KB
testcase_02 AC 80 ms
15,180 KB
testcase_03 AC 81 ms
15,228 KB
testcase_04 AC 82 ms
15,116 KB
testcase_05 AC 83 ms
15,228 KB
testcase_06 AC 81 ms
15,200 KB
testcase_07 AC 80 ms
15,044 KB
testcase_08 AC 81 ms
15,104 KB
testcase_09 AC 82 ms
15,248 KB
testcase_10 AC 82 ms
15,144 KB
testcase_11 AC 82 ms
15,148 KB
testcase_12 AC 89 ms
15,288 KB
testcase_13 AC 89 ms
15,304 KB
testcase_14 AC 88 ms
15,280 KB
testcase_15 AC 86 ms
15,244 KB
testcase_16 AC 85 ms
15,320 KB
testcase_17 AC 81 ms
15,236 KB
testcase_18 AC 81 ms
15,036 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