結果

問題 No.37 遊園地のアトラクション
ユーザー kou6839kou6839
提出日時 2014-12-09 16:19:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 814 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 77,188 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-10-10 12:50:40
合計ジャッジ時間 7,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,080 KB
testcase_01 AC 130 ms
54,156 KB
testcase_02 AC 145 ms
54,060 KB
testcase_03 AC 145 ms
54,320 KB
testcase_04 AC 141 ms
54,064 KB
testcase_05 AC 148 ms
54,152 KB
testcase_06 AC 145 ms
54,224 KB
testcase_07 AC 151 ms
54,492 KB
testcase_08 AC 139 ms
54,072 KB
testcase_09 AC 132 ms
54,416 KB
testcase_10 AC 149 ms
54,100 KB
testcase_11 AC 148 ms
54,340 KB
testcase_12 AC 147 ms
54,008 KB
testcase_13 AC 145 ms
54,020 KB
testcase_14 AC 135 ms
54,212 KB
testcase_15 AC 144 ms
54,012 KB
testcase_16 AC 149 ms
54,136 KB
testcase_17 AC 146 ms
54,224 KB
testcase_18 AC 152 ms
54,192 KB
testcase_19 AC 138 ms
54,260 KB
testcase_20 AC 146 ms
54,168 KB
testcase_21 AC 146 ms
54,328 KB
testcase_22 AC 149 ms
54,196 KB
testcase_23 AC 117 ms
53,112 KB
testcase_24 AC 132 ms
54,300 KB
testcase_25 AC 128 ms
54,100 KB
testcase_26 AC 128 ms
54,192 KB
testcase_27 AC 149 ms
54,400 KB
testcase_28 AC 132 ms
54,196 KB
testcase_29 AC 142 ms
54,200 KB
testcase_30 AC 133 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
 
public class Main {
	static int n;
	static int[] c;
	static int[] v;
	static int[] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int t=sc.nextInt();
        n = sc.nextInt();
        dp=new int[t+1];
        c=new int[n];
        v=new int[n];
        for(int i=0;i<n;i++){
        	c[i]=sc.nextInt();
        }
        for(int i=0;i<n;i++){
        	v[i]=sc.nextInt();
        }
        for(int i=0;i<n;i++){
        	int cur = v[i];
        	int count=1;
        	while(cur>0){
        		for(int j=t;j>=c[i]*count;j--){
        			dp[j]=Math.max(dp[j],dp[j-c[i]]+cur);
        		}
        		cur/=2;
        		count++;
        	}
        }

    	System.out.println(dp[t]);
    }
}
0