結果

問題 No.286 Modulo Discount Store
ユーザー ぴろずぴろず
提出日時 2015-10-09 22:27:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 76,980 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-07-20 02:28:53
合計ジャッジ時間 9,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,376 KB
testcase_01 AC 135 ms
41,312 KB
testcase_02 AC 148 ms
41,572 KB
testcase_03 AC 135 ms
41,076 KB
testcase_04 AC 134 ms
41,332 KB
testcase_05 AC 136 ms
41,264 KB
testcase_06 AC 155 ms
41,500 KB
testcase_07 AC 136 ms
41,616 KB
testcase_08 AC 137 ms
41,284 KB
testcase_09 AC 135 ms
41,352 KB
testcase_10 AC 166 ms
41,428 KB
testcase_11 AC 139 ms
41,152 KB
testcase_12 AC 138 ms
41,008 KB
testcase_13 AC 150 ms
41,460 KB
testcase_14 AC 137 ms
41,260 KB
testcase_15 AC 137 ms
41,168 KB
testcase_16 AC 137 ms
41,496 KB
testcase_17 AC 154 ms
41,744 KB
testcase_18 AC 163 ms
41,364 KB
testcase_19 AC 140 ms
41,668 KB
testcase_20 AC 139 ms
41,364 KB
testcase_21 AC 140 ms
41,356 KB
testcase_22 AC 137 ms
41,284 KB
testcase_23 AC 150 ms
41,416 KB
testcase_24 AC 139 ms
41,324 KB
testcase_25 AC 140 ms
41,560 KB
testcase_26 AC 134 ms
41,020 KB
testcase_27 AC 142 ms
41,180 KB
testcase_28 AC 156 ms
41,556 KB
testcase_29 AC 133 ms
41,324 KB
testcase_30 AC 136 ms
41,716 KB
testcase_31 AC 135 ms
41,484 KB
testcase_32 AC 135 ms
41,152 KB
testcase_33 AC 137 ms
41,272 KB
testcase_34 AC 137 ms
41,532 KB
testcase_35 AC 135 ms
41,416 KB
testcase_36 AC 133 ms
41,020 KB
testcase_37 AC 135 ms
41,292 KB
testcase_38 AC 133 ms
41,168 KB
testcase_39 AC 153 ms
41,412 KB
testcase_40 AC 135 ms
41,432 KB
testcase_41 AC 133 ms
41,288 KB
testcase_42 AC 134 ms
40,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no286;

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		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, 1<<29);
		dp[0] = 0;
		for(int i=0;i<1<<n;i++) {
			int discount = 0;
			for(int j=0;j<n;j++) {
				if ((i >> j & 1) == 1) {
					discount += a[j];
				}
			}
			discount %= 1000;
			for(int j=0;j<n;j++) {
				if ((i >> j & 1) == 0) {
					int to = i|(1<<j);
					dp[to] = Math.min(dp[to], dp[i] + Math.max(a[j] - discount , 0));
				}
			}
		}
		System.out.println(dp[(1<<n)-1]);

	}

}
0