結果

問題 No.10 +か×か
ユーザー core123core123
提出日時 2019-04-18 14:26:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,807 ms / 5,000 ms
コード長 1,476 bytes
コンパイル時間 2,544 ms
コンパイル使用メモリ 90,264 KB
実行使用メモリ 348,912 KB
最終ジャッジ日時 2024-12-14 15:42:21
合計ジャッジ時間 9,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,176 KB
testcase_01 AC 140 ms
53,832 KB
testcase_02 AC 143 ms
53,964 KB
testcase_03 AC 1,807 ms
345,544 KB
testcase_04 AC 303 ms
72,960 KB
testcase_05 AC 145 ms
52,040 KB
testcase_06 AC 1,707 ms
348,912 KB
testcase_07 AC 758 ms
166,256 KB
testcase_08 AC 358 ms
71,304 KB
testcase_09 AC 367 ms
71,108 KB
testcase_10 AC 148 ms
53,776 KB
testcase_11 AC 141 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
		}
		String[][] dp=new String[n][total+1];
		dp[0][a[0]]="";
		for(int i=1;i<dp.length;i++){
			for(int j=1;j<dp[0].length;j++){
				List<String> list=new ArrayList<>();
				if(j-a[i]>=0&&dp[i-1][j-a[i]]!=null){
					list.add(dp[i-1][j-a[i]]+"+");
				}
				if(j%a[i]==0&&dp[i-1][j/a[i]]!=null){
					list.add(dp[i-1][j/a[i]]+"*");
				}
				if(list.size()>0){
					if(list.size()>1){
						Collections.sort(list,Collections.reverseOrder());
					}
					dp[i][j]=list.get(0);
				}
			}
		}
		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));
    }
}
0