結果
問題 | No.10 +か×か |
ユーザー | core123 |
提出日時 | 2019-04-18 11:31:27 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,477 bytes |
コンパイル時間 | 2,262 ms |
コンパイル使用メモリ | 79,228 KB |
実行使用メモリ | 415,284 KB |
最終ジャッジ日時 | 2024-09-22 09:08:47 |
合計ジャッジ時間 | 8,537 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
54,280 KB |
testcase_01 | WA | - |
testcase_02 | AC | 114 ms
53,080 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 135 ms
54,024 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 236 ms
71,220 KB |
testcase_10 | AC | 116 ms
52,768 KB |
testcase_11 | AC | 115 ms
53,028 KB |
ソースコード
import java.util.*; import java.util.stream.*; import static java.lang.Math.*; 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(); } StringBuilder[][] dp=new StringBuilder[n][total+1]; dp[0][a[0]]=new StringBuilder(); for(int i=1;i<dp.length;i++){ for(int j=1;j<dp[0].length;j++){ if(j-a[i]>=0){ if(dp[i-1][j-a[i]]!=null){ dp[i][j]=new StringBuilder(dp[i-1][j-a[i]].toString()); dp[i][j].append("+"); } } if(j%a[i]==0){ if(dp[i-1][j/a[i]]!=null){ dp[i][j]=new StringBuilder(dp[i-1][j/a[i]].toString()); dp[i][j].append("*"); }else{ } } } } put(dp[n-1][total]); } public static class Pair{ final int x,y; Pair(int x,int y){ this.x=x; this.y=y; } @Override public String toString(){ return String.format("Pair(%d,%d)",x,y); } } public static void print(Object object){ System.out.print(object); } public static void put(Object object) { System.out.println(object); } public static void put(){ System.out.println(); } public static void print(String format,Object... args){ System.out.print(String.format(format,args)); } public static void put(String format,Object... args) { System.out.println(String.format(format,args)); } }