結果

問題 No.10 +か×か
ユーザー kou6839kou6839
提出日時 2014-11-11 12:37:01
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 765 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 78,044 KB
実行使用メモリ 109,748 KB
最終ジャッジ日時 2024-06-10 02:24:28
合計ジャッジ時間 8,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
46,576 KB
testcase_01 AC 111 ms
41,828 KB
testcase_02 AC 116 ms
41,676 KB
testcase_03 AC 163 ms
43,068 KB
testcase_04 TLE -
testcase_05 WA -
testcase_06 AC 228 ms
55,912 KB
testcase_07 -- -
testcase_08 AC 190 ms
55,652 KB
testcase_09 AC 192 ms
55,516 KB
testcase_10 AC 158 ms
54,480 KB
testcase_11 AC 158 ms
109,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	static int N;
	static int T;
	static int[] a;
	static void dfs(int now,int sum,ArrayList<Character> result ){
		if(now==N-1){
			if(sum==T){
				for(char g:result){
					System.out.print(g);
				}
				System.exit(0);
			}
			return;
		}
		if(sum>=T) return;
		result.add('+');
		dfs(now+1,sum+a[now+1],result);
		result.remove(result.size()-1);
		result.add('*');
		dfs(now+1,sum*a[now+1],result);
		result.remove(result.size()-1);
		
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		 N = sc.nextInt();
		 T = sc.nextInt();
		 a = new int[N];
		for(int i=0;i<N;i++){
			a[i] = sc.nextInt();
		}
		dfs(0,a[0],new ArrayList<Character>());
		
	}
}	
0