結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー ryoo14ryoo14
提出日時 2016-11-29 21:17:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-06-08 02:32:02
合計ジャッジ時間 4,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,160 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 103 ms
12,544 KB
testcase_04 AC 101 ms
12,544 KB
testcase_05 AC 130 ms
13,440 KB
testcase_06 AC 154 ms
13,824 KB
testcase_07 AC 117 ms
12,672 KB
testcase_08 AC 122 ms
12,800 KB
testcase_09 AC 149 ms
13,312 KB
testcase_10 AC 100 ms
12,800 KB
testcase_11 AC 106 ms
12,544 KB
testcase_12 AC 111 ms
12,672 KB
testcase_13 AC 141 ms
13,312 KB
testcase_14 AC 149 ms
13,184 KB
testcase_15 AC 106 ms
12,800 KB
testcase_16 AC 106 ms
12,800 KB
testcase_17 AC 104 ms
12,416 KB
testcase_18 AC 97 ms
12,288 KB
testcase_19 AC 178 ms
14,080 KB
testcase_20 AC 154 ms
13,440 KB
testcase_21 AC 108 ms
12,672 KB
testcase_22 AC 104 ms
12,416 KB
testcase_23 AC 114 ms
12,928 KB
testcase_24 AC 148 ms
13,696 KB
testcase_25 AC 171 ms
14,080 KB
testcase_26 AC 126 ms
12,928 KB
testcase_27 AC 121 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
l = gets.split.map(&:to_i)
s = Hash.new([0,1])
n.times do |i|
  s[(i+65).chr] = [l[i],1]
end

score = Hash.new{|k, v| k[v]=[0]*n}
total = Hash.new([0, 0])

t = gets.to_i
t.times do |m|
  name, pro = gets.split
  score[name][pro.ord-65] = (50 * s[pro][0] + 50 * s[pro][0] / (0.8 + 0.2 * s[pro][1])).floor
  total[name] = [total[name][0]-score[name][pro.ord-65], m]
  s[pro][1] += 1
end

total.sort_by{|k1, v1| v1}.each_with_index do |(k2, v2), i|
  ans = (i+1).to_s + " " + k2 + " "
  tt = ""
  s.each_key do |k|
    tt = tt + score[k2][k.ord-65].to_s + " "
  end
  tt = tt + (-total[k2][0]).to_s
  puts ans + tt
end
0