結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー suppy193suppy193
提出日時 2017-02-10 10:34:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-06-08 01:13:11
合計ジャッジ時間 4,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,032 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 100 ms
12,416 KB
testcase_04 AC 98 ms
12,416 KB
testcase_05 AC 117 ms
14,848 KB
testcase_06 AC 137 ms
13,056 KB
testcase_07 AC 115 ms
12,672 KB
testcase_08 AC 116 ms
12,800 KB
testcase_09 AC 131 ms
13,696 KB
testcase_10 AC 95 ms
12,416 KB
testcase_11 AC 105 ms
12,544 KB
testcase_12 AC 106 ms
12,544 KB
testcase_13 AC 130 ms
13,312 KB
testcase_14 AC 136 ms
14,464 KB
testcase_15 AC 103 ms
12,544 KB
testcase_16 AC 95 ms
12,416 KB
testcase_17 AC 99 ms
12,288 KB
testcase_18 AC 91 ms
12,544 KB
testcase_19 AC 158 ms
13,312 KB
testcase_20 AC 137 ms
14,208 KB
testcase_21 AC 103 ms
12,416 KB
testcase_22 AC 99 ms
12,544 KB
testcase_23 AC 113 ms
12,800 KB
testcase_24 AC 145 ms
13,056 KB
testcase_25 AC 155 ms
13,440 KB
testcase_26 AC 124 ms
12,544 KB
testcase_27 AC 121 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.strip.to_i
level = gets.strip.split(' ').map(&:to_i)
t = gets.strip.to_i
memo = Hash.new()
ac = Hash.new(0)
scores = Hash.new(0)
ranking = Hash.new([])
t.times do
	name, problem = gets.strip.split(' ')
	ac[problem] += 1

	score = (50 * level[problem[0].ord - 'A'.ord] + 50 * level[problem[0].ord - 'A'.ord] / (0.8 + 0.2 * ac[problem])).floor
	# p score
	ranking[scores[name]].delete(name)
	scores[name] += score
	ranking[scores[name]] += [name]
	unless memo.key?(name)
		memo[name] = Hash.new(0)
	end
	memo[name][problem] = score
end
ranking = ranking.sort{|a, b| b[0] <=> a[0]}

i = 1
ranking.each do |arr|
	arr[1].each do |name|
		print "#{i} #{name} " 
		(0...n).each do |j|
			if memo[name].key?(('A'.ord + j).chr)
				print "#{memo[name][('A'.ord + j).chr]} "
			else
				print "0 "
			end
			
		end
		print "#{scores[name]}\n"
		i += 1
	end	
end
0