結果
問題 | No.10 +か×か |
ユーザー | ぴろず |
提出日時 | 2014-12-20 23:34:14 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 241 ms / 5,000 ms |
コード長 | 911 bytes |
コンパイル時間 | 2,283 ms |
コンパイル使用メモリ | 77,612 KB |
実行使用メモリ | 90,252 KB |
最終ジャッジ日時 | 2024-12-14 15:26:39 |
合計ジャッジ時間 | 4,873 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
41,136 KB |
testcase_01 | AC | 120 ms
41,064 KB |
testcase_02 | AC | 123 ms
41,356 KB |
testcase_03 | AC | 221 ms
89,660 KB |
testcase_04 | AC | 196 ms
72,424 KB |
testcase_05 | AC | 119 ms
40,212 KB |
testcase_06 | AC | 241 ms
90,252 KB |
testcase_07 | AC | 200 ms
72,692 KB |
testcase_08 | AC | 162 ms
52,064 KB |
testcase_09 | AC | 182 ms
55,348 KB |
testcase_10 | AC | 128 ms
41,492 KB |
testcase_11 | AC | 137 ms
41,192 KB |
ソースコード
package no010; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int total = sc.nextInt(); int[] a = new int[n]; for(int i=0;i<n;i++) { a[i] = sc.nextInt(); } long[][] dp = new long[n][total+1]; for(int i=0;i<n;i++) { Arrays.fill(dp[i], 1L<<60); } dp[0][a[0]] = 0; for(int i=0;i<n-1;i++) { for(int j=0;j<=total+1;j++) { if (j + a[i+1] <= total) { dp[i+1][j+a[i+1]] = Math.min(dp[i+1][j+a[i+1]],dp[i][j] * 2); } if (j * a[i+1] <= total) { dp[i+1][j*a[i+1]] = Math.min(dp[i+1][j*a[i+1]],dp[i][j] * 2 + 1); } } } StringBuilder sb = new StringBuilder(); long ans = dp[n-1][total]; for(int i=0;i<n-1;i++) { sb.append(ans % 2 == 0 ? '+' : '*'); ans >>= 1; } sb.reverse(); System.out.println(sb.toString()); } }