結果

問題 No.173 カードゲーム(Medium)
ユーザー cielciel
提出日時 2017-05-30 01:57:53
言語 Ruby
(3.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 556 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 11,944 KB
実行使用メモリ 16,356 KB
最終ジャッジ日時 2023-10-21 17:03:00
合計ジャッジ時間 5,109 ms
ジャッジサーバーID
(参考情報)
judge14 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
16,228 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 535 ms
16,328 KB
testcase_04 AC 532 ms
16,324 KB
testcase_05 AC 478 ms
16,312 KB
testcase_06 AC 432 ms
16,304 KB
testcase_07 AC 410 ms
16,320 KB
testcase_08 AC 405 ms
16,320 KB
testcase_09 AC 616 ms
16,356 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
n,pa,pb=gets.split.zip([:to_i.to_proc,:to_f.to_proc,:to_f.to_proc]).map{|x,y|y.call(x)}
A=gets.split.map(&:to_i).sort
B=gets.split.map(&:to_i).sort
win=0
total=0
10000.times{
	total+=1
	a=A.dup
	b=B.dup
	a_score=b_score=0
	n.times{|i|
		a_idx=i==n-1||rand<pa ? 0 : [*1...n-i].sample
		b_idx=i==n-1||rand<pb ? 0 : [*1...n-i].sample
		score=a[a_idx]+b[b_idx]
		a_score+=score if a[a_idx]>b[b_idx]
		b_score+=score if a[a_idx]<b[b_idx]
		a=a[0,a_idx]+a[a_idx+1..-1]
		b=b[0,b_idx]+b[b_idx+1..-1]
	}
	win+=1 if a_score>b_score
}
p win*1.0/total
0