結果
問題 | No.10 +か×か |
ユーザー | takeya_okino |
提出日時 | 2017-08-12 20:28:47 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,951 bytes |
コンパイル時間 | 2,399 ms |
コンパイル使用メモリ | 79,524 KB |
実行使用メモリ | 120,576 KB |
最終ジャッジ日時 | 2024-10-13 06:02:14 |
合計ジャッジ時間 | 5,944 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
41,204 KB |
testcase_01 | AC | 122 ms
40,920 KB |
testcase_02 | AC | 124 ms
41,068 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 129 ms
41,336 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 123 ms
40,152 KB |
testcase_11 | AC | 122 ms
40,300 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int t = sc.nextInt(); int[] a = new int[n]; for(int i = 0; i < n; i++) { a[i] = sc.nextInt(); } int[][] dp = new int[n + 1][t + 1]; String[][] exp = new String[n + 1][t + 1]; dp[1][a[0]] = 1; exp[1][a[0]] = ""; if(a[0] + a[1] < t + 1) { dp[2][a[0] + a[1]] = 1; exp[2][a[0] + a[1]] = "1"; } if(a[0] * a[1] < t + 1) { dp[2][a[0] * a[1]] = 1; if(a[0] * a[1] != a[0] + a[1]) { exp[2][a[0] * a[1]] = "2"; } } for(int i = 3; i < n + 1; i++) { for(int j = 1; j < t + 1; j++) { int x = 0; int y = 0; if(j > a[i - 1]) { if(dp[i - 1][j - a[i - 1]] == 1) { dp[i][j] = 1; x = Integer.parseInt(exp[i - 1][j - a[i - 1]]); } if(dp[i - 1][j / a[i - 1]] == 1) { dp[i][j] = 1; y = Integer.parseInt(exp[i - 1][j / a[i - 1]]); } if(x > 0 && y > 0) { if(x <= y) { exp[i][j] = exp[i - 1][j - a[i - 1]] + "1"; } else { exp[i][j] = exp[i - 1][j / a[i - 1]] + "2"; } } if(x > 0 && y == 0) { exp[i][j] = exp[i - 1][j - a[i - 1]] + "1"; } if(x == 0 && y > 0) { exp[i][j] = exp[i - 1][j / a[i - 1]] + "2"; } } else { if(j % a[i - 1] == 0) { if(dp[i - 1][j / a[i - 1]] == 1) { dp[i][j] = 1; exp[i][j] = exp[i - 1][j / a[i - 1]] + "2"; } } } } } String e = exp[n][t]; String ans = ""; for(int i = 0; i < e.length(); i++) { if(e.charAt(i) == '1') { ans += "+"; } else { ans += "*"; } } System.out.println(ans); } }