結果

問題 No.2093 Shio Ramen
ユーザー viral8viral8
提出日時 2022-10-07 22:37:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 3,812 ms
コンパイル使用メモリ 76,904 KB
実行使用メモリ 47,520 KB
最終ジャッジ日時 2024-06-12 19:47:25
合計ジャッジ時間 9,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,312 KB
testcase_01 AC 131 ms
41,600 KB
testcase_02 AC 127 ms
41,456 KB
testcase_03 AC 127 ms
40,976 KB
testcase_04 AC 132 ms
41,312 KB
testcase_05 AC 131 ms
41,236 KB
testcase_06 AC 132 ms
40,988 KB
testcase_07 AC 131 ms
41,036 KB
testcase_08 AC 132 ms
41,188 KB
testcase_09 AC 195 ms
42,832 KB
testcase_10 AC 228 ms
47,520 KB
testcase_11 AC 143 ms
41,568 KB
testcase_12 AC 202 ms
43,060 KB
testcase_13 AC 199 ms
43,096 KB
testcase_14 AC 205 ms
43,728 KB
testcase_15 AC 219 ms
47,460 KB
testcase_16 AC 176 ms
42,872 KB
testcase_17 AC 214 ms
44,420 KB
testcase_18 AC 236 ms
46,868 KB
testcase_19 AC 225 ms
47,040 KB
testcase_20 AC 209 ms
45,300 KB
testcase_21 AC 222 ms
46,928 KB
testcase_22 AC 224 ms
47,072 KB
testcase_23 AC 233 ms
47,044 KB
testcase_24 AC 239 ms
46,956 KB
testcase_25 AC 236 ms
46,956 KB
testcase_26 AC 228 ms
47,168 KB
testcase_27 AC 218 ms
46,940 KB
testcase_28 AC 231 ms
47,040 KB
testcase_29 AC 228 ms
47,044 KB
testcase_30 AC 241 ms
47,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int I = sc.nextInt();
		int[][] sa = new int[N+1][2];
		for(int i=1;i<=N;i++){
			sa[i][0] = sc.nextInt();
			sa[i][1] = sc.nextInt();
		}
		int[][] dp = new int[N+1][I+1];
		for(int i=1;i<=N;i++){
			for(int j=0;j<=I;j++){
				dp[i][j] = Math.max(dp[i][j],dp[i-1][j]);
				if(j+sa[i][0]<=I)
					dp[i][j+sa[i][0]] = dp[i-1][j]+sa[i][1];
			}
		}
		System.out.println(dp[N][I]);
	}
}
0