結果
問題 | No.10 +か×か |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-01-05 01:27:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 129 ms / 5,000 ms |
コード長 | 2,341 bytes |
コンパイル時間 | 2,411 ms |
コンパイル使用メモリ | 78,224 KB |
実行使用メモリ | 47,048 KB |
最終ジャッジ日時 | 2024-12-14 15:40:52 |
合計ジャッジ時間 | 3,601 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,804 KB |
testcase_01 | AC | 51 ms
37,044 KB |
testcase_02 | AC | 50 ms
37,032 KB |
testcase_03 | AC | 106 ms
46,876 KB |
testcase_04 | AC | 96 ms
42,504 KB |
testcase_05 | AC | 51 ms
37,076 KB |
testcase_06 | AC | 129 ms
47,048 KB |
testcase_07 | AC | 101 ms
42,656 KB |
testcase_08 | AC | 87 ms
39,180 KB |
testcase_09 | AC | 99 ms
41,236 KB |
testcase_10 | AC | 51 ms
37,140 KB |
testcase_11 | AC | 52 ms
37,092 KB |
ソースコード
import java.io.*; import java.util.*; class Main { public static void main(String[] args) { MyScanner sc = new MyScanner(); out = new PrintWriter(new BufferedOutputStream(System.out)); int n=sc.nextInt(); int total=sc.nextInt(); int[]a=new int[n]; for(int i=0;i<n;++i)a[i]=sc.nextInt(); boolean[][]dp=new boolean[n][total+1]; dp[n-1][total]=true; for(int i=n-1;i>=1;--i){ for(int j=0;j<=total;++j){ if(j+a[i]<=total&&dp[i][j+a[i]]) dp[i-1][j]=true; if(j*a[i]<=total&&dp[i][j*a[i]]) dp[i-1][j]=true; } } // keiro fukugen int[]ops=new int[n-1]; int c=a[0]; for(int i=1;i<n;++i){ if(c+a[i]<=total&&dp[i][c+a[i]]){ ops[i-1]=1; c+=a[i]; continue; } ops[i-1]=2; c*=a[i]; } for(int i=0;i<n-1;++i) out.print(ops[i]==1?"+":"*"); out.println(); out.close(); } // http://codeforces.com/blog/entry/7018 //-----------PrintWriter for faster output--------------------------------- public static PrintWriter out; //-----------MyScanner class for faster input---------- public static class MyScanner { BufferedReader br; StringTokenizer st; public MyScanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine(){ String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } }