結果

問題 No.286 Modulo Discount Store
ユーザー kou6839kou6839
提出日時 2015-10-16 02:16:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 78,544 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-07-21 16:44:52
合計ジャッジ時間 8,481 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,320 KB
testcase_01 AC 120 ms
41,644 KB
testcase_02 AC 133 ms
41,648 KB
testcase_03 AC 119 ms
41,232 KB
testcase_04 AC 116 ms
41,400 KB
testcase_05 AC 117 ms
41,548 KB
testcase_06 AC 149 ms
41,480 KB
testcase_07 AC 119 ms
41,468 KB
testcase_08 AC 105 ms
41,536 KB
testcase_09 AC 108 ms
41,612 KB
testcase_10 AC 126 ms
41,468 KB
testcase_11 AC 118 ms
41,220 KB
testcase_12 AC 122 ms
41,320 KB
testcase_13 AC 129 ms
41,576 KB
testcase_14 AC 119 ms
41,612 KB
testcase_15 AC 120 ms
41,392 KB
testcase_16 AC 115 ms
41,608 KB
testcase_17 AC 122 ms
41,800 KB
testcase_18 AC 142 ms
41,600 KB
testcase_19 AC 122 ms
41,240 KB
testcase_20 AC 123 ms
41,460 KB
testcase_21 AC 123 ms
41,648 KB
testcase_22 AC 120 ms
41,476 KB
testcase_23 AC 129 ms
41,432 KB
testcase_24 AC 128 ms
41,388 KB
testcase_25 AC 113 ms
41,440 KB
testcase_26 AC 122 ms
41,116 KB
testcase_27 AC 122 ms
41,596 KB
testcase_28 AC 139 ms
41,468 KB
testcase_29 AC 107 ms
41,036 KB
testcase_30 AC 117 ms
41,648 KB
testcase_31 AC 122 ms
41,268 KB
testcase_32 AC 117 ms
41,176 KB
testcase_33 AC 118 ms
41,288 KB
testcase_34 AC 113 ms
41,304 KB
testcase_35 AC 121 ms
41,468 KB
testcase_36 AC 119 ms
41,184 KB
testcase_37 AC 124 ms
41,308 KB
testcase_38 AC 109 ms
41,420 KB
testcase_39 AC 124 ms
41,516 KB
testcase_40 AC 119 ms
41,548 KB
testcase_41 AC 119 ms
41,388 KB
testcase_42 AC 117 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.event.KeyAdapter;
import java.math.BigDecimal;
import java.util.*;

public class Main{
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		
		int n = sc.nextInt();
		
		int[] a = new int[n];
		for(int i=0;i<n;i++) a[i] = sc.nextInt();
		
		int[] dp = new int[1<<n];
		Arrays.fill(dp, 100000000);
		dp[0] = 0;
		for(int i=0;i< (1<<n);i++){
			int now = 0;
			for(int j=0;j<n;j++){
				if(( (1<<j)&i) >0) now+=a[j];
			}
			for(int j=0;j<n;j++){
				if( ( (1<<j)&i) ==0){
					dp[i+(1<<j)]=Math.min(dp[i+(1<<j)], dp[i]+Math.max(a[j]-now%1000,0));
				}
			}
		}
		System.out.println(dp[(1<<n)-1]);
	}	
}
0