結果

問題 No.710 チーム戦
ユーザー %20%20
提出日時 2018-12-09 21:12:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,362 ms / 3,000 ms
コード長 200 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-09-16 15:33:28
合計ジャッジ時間 19,798 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,032 KB
testcase_01 AC 77 ms
11,904 KB
testcase_02 AC 685 ms
12,544 KB
testcase_03 AC 655 ms
12,800 KB
testcase_04 AC 718 ms
12,672 KB
testcase_05 AC 658 ms
12,800 KB
testcase_06 AC 741 ms
12,800 KB
testcase_07 AC 695 ms
12,544 KB
testcase_08 AC 743 ms
12,800 KB
testcase_09 AC 671 ms
12,544 KB
testcase_10 AC 709 ms
12,800 KB
testcase_11 AC 728 ms
12,672 KB
testcase_12 AC 770 ms
12,800 KB
testcase_13 AC 702 ms
12,672 KB
testcase_14 AC 672 ms
12,544 KB
testcase_15 AC 706 ms
12,544 KB
testcase_16 AC 710 ms
12,544 KB
testcase_17 AC 762 ms
12,800 KB
testcase_18 AC 715 ms
12,800 KB
testcase_19 AC 781 ms
12,672 KB
testcase_20 AC 725 ms
12,544 KB
testcase_21 AC 759 ms
12,672 KB
testcase_22 AC 1,362 ms
13,440 KB
testcase_23 AC 78 ms
12,160 KB
testcase_24 AC 1,285 ms
13,312 KB
testcase_25 AC 77 ms
12,160 KB
testcase_26 AC 75 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
a=[]
b=[]
s=0
N.times{|i|
	a[i],b[i]=gets.split.map &:to_i
	s+=b[i]
}
d=[0]*(s+1)
N.times{|i|
	s.downto(a[i]){|j|
		d[j]=[d[j],d[j-a[i]]+b[i]].max
	}
}
i=-1
p d.map{|d|[i+=1,s-d].max}.min
0