結果
問題 | No.5 数字のブロック |
ユーザー | fujisu |
提出日時 | 2015-02-01 09:54:41 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,529 bytes |
コンパイル時間 | 2,243 ms |
コンパイル使用メモリ | 78,208 KB |
実行使用メモリ | 441,200 KB |
最終ジャッジ日時 | 2024-06-23 04:54:35 |
合計ジャッジ時間 | 37,778 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
36,844 KB |
testcase_01 | AC | 50 ms
36,808 KB |
testcase_02 | AC | 51 ms
36,476 KB |
testcase_03 | AC | 2,230 ms
222,052 KB |
testcase_04 | AC | 250 ms
42,284 KB |
testcase_05 | AC | 3,742 ms
337,776 KB |
testcase_06 | AC | 905 ms
118,856 KB |
testcase_07 | AC | 1,460 ms
174,704 KB |
testcase_08 | AC | 1,392 ms
118,088 KB |
testcase_09 | AC | 317 ms
73,800 KB |
testcase_10 | AC | 2,134 ms
171,508 KB |
testcase_11 | AC | 562 ms
73,772 KB |
testcase_12 | AC | 4,346 ms
221,020 KB |
testcase_13 | AC | 1,433 ms
174,752 KB |
testcase_14 | AC | 89 ms
46,080 KB |
testcase_15 | AC | 71 ms
37,432 KB |
testcase_16 | AC | 3,069 ms
237,644 KB |
testcase_17 | AC | 3,905 ms
430,332 KB |
testcase_18 | AC | 2,299 ms
214,304 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
import java.io.IOException; import java.util.InputMismatchException; public class Main { int n; int[] w; int[][] dp; int dp(int k, int r) { if (r < 0) { return -10000; } if (n <= k) { return 0; } if (0 < dp[k][r]) { return dp[k][r]; } int res = 0; res = Math.max(res, dp(k + 1, r)); res = Math.max(res, dp(k + 1, r - w[k]) + 1); return dp[k][r] = res; } void run() { MyScanner sc = new MyScanner(); int l = sc.nextInt(); n = sc.nextInt(); w = sc.nextIntArray(n); dp = new int[n][l + 1]; System.out.println(dp(0, l)); } public static void main(String[] args) { new Main().run(); } public void mapDebug(int[][] a) { System.out.println("--------map display---------"); for (int i = 0; i < a.length; i++) { for (int j = 0; j < a[i].length; j++) { System.out.printf("%3d ", a[i][j]); } System.out.println(); } System.out.println("----------------------------" + '\n'); } class MyScanner { int read() { try { return System.in.read(); } catch (IOException e) { throw new InputMismatchException(); } } boolean isSpaceChar(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } boolean isEndline(int c) { return c == '\n' || c == '\r' || c == -1; } int nextInt() { return Integer.parseInt(next()); } int[] nextIntArray(int n) { int[] array = new int[n]; for (int i = 0; i < n; i++) array[i] = nextInt(); return array; } long nextLong() { return Long.parseLong(next()); } long[] nextLongArray(int n) { long[] array = new long[n]; for (int i = 0; i < n; i++) array[i] = nextLong(); return array; } double nextDouble() { return Double.parseDouble(next()); } double[] nextDoubleArray(int n) { double[] array = new double[n]; for (int i = 0; i < n; i++) array[i] = nextDouble(); return array; } String next() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } String[] nextStringArray(int n) { String[] array = new String[n]; for (int i = 0; i < n; i++) array[i] = next(); return array; } String nextLine() { int c = read(); while (isEndline(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isEndline(c)); return res.toString(); } } }