結果

問題 No.710 チーム戦
ユーザー %20%20
提出日時 2018-12-09 21:01:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,462 ms / 3,000 ms
コード長 236 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-09-16 15:33:07
合計ジャッジ時間 20,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 84 ms
12,288 KB
testcase_02 AC 750 ms
12,160 KB
testcase_03 AC 697 ms
12,416 KB
testcase_04 AC 792 ms
12,416 KB
testcase_05 AC 719 ms
12,160 KB
testcase_06 AC 807 ms
12,416 KB
testcase_07 AC 740 ms
12,160 KB
testcase_08 AC 801 ms
12,288 KB
testcase_09 AC 731 ms
12,160 KB
testcase_10 AC 775 ms
12,544 KB
testcase_11 AC 811 ms
12,288 KB
testcase_12 AC 831 ms
12,416 KB
testcase_13 AC 762 ms
12,416 KB
testcase_14 AC 741 ms
12,288 KB
testcase_15 AC 751 ms
12,160 KB
testcase_16 AC 752 ms
12,160 KB
testcase_17 AC 832 ms
12,544 KB
testcase_18 AC 766 ms
12,288 KB
testcase_19 AC 851 ms
12,544 KB
testcase_20 AC 790 ms
12,416 KB
testcase_21 AC 841 ms
12,416 KB
testcase_22 AC 1,462 ms
12,800 KB
testcase_23 AC 86 ms
12,160 KB
testcase_24 AC 1,414 ms
12,544 KB
testcase_25 AC 87 ms
12,160 KB
testcase_26 AC 89 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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