結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 AC 79 ms
12,416 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 91 ms
12,544 KB
testcase_04 AC 89 ms
12,544 KB
testcase_05 AC 112 ms
13,056 KB
testcase_06 AC 134 ms
13,952 KB
testcase_07 AC 107 ms
12,800 KB
testcase_08 AC 107 ms
13,056 KB
testcase_09 AC 126 ms
13,696 KB
testcase_10 AC 90 ms
12,672 KB
testcase_11 AC 96 ms
12,672 KB
testcase_12 AC 101 ms
12,544 KB
testcase_13 AC 120 ms
13,312 KB
testcase_14 AC 130 ms
13,184 KB
testcase_15 AC 96 ms
12,672 KB
testcase_16 AC 93 ms
12,672 KB
testcase_17 AC 91 ms
12,544 KB
testcase_18 AC 83 ms
12,288 KB
testcase_19 AC 140 ms
14,464 KB
testcase_20 AC 131 ms
13,696 KB
testcase_21 AC 95 ms
12,544 KB
testcase_22 AC 94 ms
12,544 KB
testcase_23 AC 99 ms
12,800 KB
testcase_24 AC 121 ms
13,696 KB
testcase_25 AC 133 ms
14,080 KB
testcase_26 AC 101 ms
12,928 KB
testcase_27 AC 100 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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[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