結果

問題 No.545 ママの大事な二人の子供
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-24 00:32:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-09-21 16:38:29
合計ジャッジ時間 2,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 38 ms
52,736 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 39 ms
52,736 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 47 ms
60,928 KB
testcase_17 AC 53 ms
62,976 KB
testcase_18 AC 60 ms
66,560 KB
testcase_19 AC 62 ms
67,584 KB
testcase_20 AC 70 ms
72,832 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 84 ms
76,544 KB
testcase_23 AC 103 ms
78,592 KB
testcase_24 AC 82 ms
76,672 KB
testcase_25 AC 98 ms
78,512 KB
testcase_26 AC 102 ms
78,628 KB
testcase_27 AC 97 ms
79,744 KB
testcase_28 AC 104 ms
78,572 KB
testcase_29 AC 101 ms
79,744 KB
testcase_30 AC 96 ms
78,464 KB
testcase_31 AC 93 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
from itertools import product
n = int(input())
m = n // 2
AB = tuple(tuple(map(int, input().split())) for _ in range(n))
A, _ = zip(*AB)
sumA = sum(A)


X = [0]
Y = [0]
for a, b in AB[:m]:
    X.extend([x+a+b for x in X])
for a, b in AB[m:]:
    Y.extend([y+a+b for y in Y])


Y.sort()
ans = 10**18
for x in X:
    T = sumA - x
    i = bisect.bisect_left(Y, T)
    for j in range(-3, 4):
        if 0 <= i + j < len(Y):
            ans = min(ans, abs(T - Y[i + j]))
print(ans)
0