結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー yuruhiyayuruhiya
提出日時 2020-07-26 14:21:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-06-28 14:55:57
合計ジャッジ時間 5,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 85 ms
12,032 KB
testcase_03 AC 100 ms
12,672 KB
testcase_04 AC 101 ms
12,544 KB
testcase_05 AC 132 ms
13,696 KB
testcase_06 AC 151 ms
14,208 KB
testcase_07 AC 118 ms
12,800 KB
testcase_08 AC 126 ms
13,568 KB
testcase_09 AC 146 ms
13,824 KB
testcase_10 AC 98 ms
12,544 KB
testcase_11 AC 105 ms
12,544 KB
testcase_12 AC 111 ms
12,672 KB
testcase_13 AC 143 ms
13,440 KB
testcase_14 AC 154 ms
15,104 KB
testcase_15 AC 112 ms
12,672 KB
testcase_16 AC 105 ms
12,416 KB
testcase_17 AC 107 ms
12,160 KB
testcase_18 AC 97 ms
12,416 KB
testcase_19 AC 170 ms
15,744 KB
testcase_20 AC 162 ms
15,488 KB
testcase_21 AC 105 ms
12,288 KB
testcase_22 AC 102 ms
12,288 KB
testcase_23 AC 111 ms
13,184 KB
testcase_24 AC 144 ms
14,592 KB
testcase_25 AC 164 ms
15,744 KB
testcase_26 AC 126 ms
13,184 KB
testcase_27 AC 120 ms
13,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
level = gets.split.map &:to_i
ac_count = [0] * n

user = Hash.new
gets.to_i.times do |i|
	name, problem = gets.split
	id = problem.ord - 'A'.ord
	ac_count[id] += 1
	score =
		50 * level[id] +
			50 * level[id] / (Rational('4/5') + Rational('1/5') * ac_count[id])
	user[name] = [[0] * n, 0] if !user.key?(name)
	user[name][0][id] = score.floor
	user[name][1] = i
end

result = user.sort_by { |name, (score, time)| [-score.sum, time] }
puts result.map.with_index(1) { |(name, (score, time)), i|
		[i, name, score, score.sum].flatten.join(' ')
     }.join("\n")
0