結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー | shinwisteria |
提出日時 | 2018-03-07 19:18:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 821 bytes |
コンパイル時間 | 3,716 ms |
コンパイル使用メモリ | 79,228 KB |
実行使用メモリ | 117,628 KB |
最終ジャッジ日時 | 2024-10-04 02:30:10 |
合計ジャッジ時間 | 9,392 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 132 ms
53,840 KB |
testcase_02 | AC | 151 ms
62,640 KB |
testcase_03 | WA | - |
testcase_04 | AC | 138 ms
58,224 KB |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 115 ms
41,476 KB |
testcase_09 | AC | 124 ms
41,216 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 199 ms
56,528 KB |
testcase_14 | AC | 207 ms
66,360 KB |
testcase_15 | AC | 112 ms
41,568 KB |
testcase_16 | AC | 113 ms
41,140 KB |
testcase_17 | RE | - |
testcase_18 | AC | 109 ms
40,924 KB |
testcase_19 | AC | 114 ms
41,412 KB |
testcase_20 | AC | 119 ms
41,404 KB |
testcase_21 | AC | 104 ms
40,116 KB |
ソースコード
package m.shin; import java.util.Scanner; import java.util.TreeSet; public class Con617 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int N = s.nextInt() , K = s.nextInt(); TreeSet<Integer> A = new TreeSet<>(); for(int i = 0;i < N;i++){ A.add(s.nextInt()); } s.close(); Integer[] a = new Integer[A.size()]; A.toArray(a); //System.out.println(a[0] + " " + a[1]); int max = 0; int[][] d = new int[K+1][2]; //[合計値][次に足すaの番号] d[0][0] = 1; for(int i = 0;i <= K;i++){ if(d[i][0] == 1){ for(int j = d[i][1];j < N;j++){ int add = a[j]; if(i + add <= K){ d[i + add][0] = 1; d[i + add][1] = Math.min(j+1, N-1); max = Math.max(max, i + add); } } } } System.out.println(max); } }