結果

問題 No.545 ママの大事な二人の子供
ユーザー tentententen
提出日時 2020-09-08 12:51:35
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 739 bytes
コンパイル時間 2,630 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 174,064 KB
最終ジャッジ日時 2024-05-07 00:35:03
合計ジャッジ時間 7,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,052 KB
testcase_01 AC 104 ms
39,776 KB
testcase_02 AC 112 ms
41,236 KB
testcase_03 AC 97 ms
39,440 KB
testcase_04 AC 116 ms
41,016 KB
testcase_05 AC 116 ms
40,816 KB
testcase_06 AC 117 ms
41,108 KB
testcase_07 AC 101 ms
39,728 KB
testcase_08 AC 112 ms
40,992 KB
testcase_09 AC 117 ms
41,224 KB
testcase_10 AC 122 ms
40,908 KB
testcase_11 AC 118 ms
40,856 KB
testcase_12 AC 121 ms
41,500 KB
testcase_13 AC 122 ms
41,284 KB
testcase_14 AC 126 ms
41,208 KB
testcase_15 AC 107 ms
39,844 KB
testcase_16 AC 136 ms
41,680 KB
testcase_17 AC 126 ms
42,148 KB
testcase_18 AC 176 ms
75,256 KB
testcase_19 AC 291 ms
174,064 KB
testcase_20 RE -
testcase_21 AC 113 ms
41,376 KB
testcase_22 RE -
testcase_23 WA -
testcase_24 RE -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	long[] adds = new long[n];
    	long[] dp = new long[1 << n];
    	for (int i = 0; i < n; i++) {
    	    long a = sc.nextLong();
    	    long b = sc.nextLong();
    	    dp[0] += b;
    	    adds[i] = a + b;
    	}
    	long min = dp[0];
    	for (int i = 1; i < (1 << n); i++) {
    	    for (int j = 0; j < n; j++) {
    	        if ((i & (1 << j)) != (1 << j)) {
    	            continue;
    	        }
    	        dp[i] = dp[i ^ (1 << j)] - adds[j];
    	        break;
    	    }
    	    min = Math.min(min, Math.abs(dp[i]));
    	}
    	System.out.println(min);
    }
}
0