結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー cielciel
提出日時 2016-11-22 01:07:39
言語 Ruby
(3.3.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-06-08 02:31:52
合計ジャッジ時間 4,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,032 KB
testcase_01 AC 72 ms
12,032 KB
testcase_02 AC 71 ms
12,160 KB
testcase_03 AC 80 ms
12,672 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 97 ms
13,056 KB
testcase_06 AC 117 ms
13,952 KB
testcase_07 AC 92 ms
12,544 KB
testcase_08 AC 100 ms
13,184 KB
testcase_09 AC 114 ms
13,568 KB
testcase_10 AC 80 ms
12,800 KB
testcase_11 AC 92 ms
12,800 KB
testcase_12 AC 97 ms
12,672 KB
testcase_13 AC 117 ms
13,440 KB
testcase_14 AC 128 ms
13,184 KB
testcase_15 AC 92 ms
12,672 KB
testcase_16 AC 89 ms
12,672 KB
testcase_17 AC 89 ms
12,544 KB
testcase_18 AC 86 ms
12,288 KB
testcase_19 AC 138 ms
14,464 KB
testcase_20 AC 129 ms
13,696 KB
testcase_21 AC 94 ms
12,672 KB
testcase_22 AC 91 ms
12,416 KB
testcase_23 AC 93 ms
12,672 KB
testcase_24 AC 119 ms
13,824 KB
testcase_25 AC 137 ms
14,208 KB
testcase_26 AC 106 ms
12,928 KB
testcase_27 AC 102 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
f=->a,b{50*a+250*a/(4+b)}
n=gets.to_i
a=gets.split.map(&:to_i)
h=Hash.new([0,0])
ac=Hash.new(0)
perprob=Hash.new{|h,k|h[k]=[0]*n}
gets.to_i.times{|i|
	x,y=gets.split
	idx=y.ord-65
	score=f.(a[idx],ac[idx]+=1)
	perprob[x][idx]=score
	#このhをBITで管理できれば
	h[x]=[h[x][0]-score,i]
}
h.sort_by{|k,v|v}.each.with_index{|(k,v),i|
	puts '%d %s %s %d'%[i+1,k,perprob[k]*' ',-v[0]]
}
0