結果

問題 No.2918 Divide Applicants Fairly
ユーザー 高橋ゆに高橋ゆに
提出日時 2024-09-15 20:07:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 588 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 131,008 KB
最終ジャッジ日時 2024-10-07 11:30:20
合計ジャッジ時間 9,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,360 KB
testcase_01 AC 39 ms
53,780 KB
testcase_02 AC 37 ms
52,980 KB
testcase_03 AC 38 ms
53,692 KB
testcase_04 AC 38 ms
51,872 KB
testcase_05 AC 47 ms
61,260 KB
testcase_06 AC 45 ms
61,960 KB
testcase_07 AC 39 ms
53,836 KB
testcase_08 AC 37 ms
52,532 KB
testcase_09 AC 182 ms
79,616 KB
testcase_10 AC 37 ms
52,452 KB
testcase_11 AC 37 ms
52,956 KB
testcase_12 AC 113 ms
77,184 KB
testcase_13 AC 50 ms
63,280 KB
testcase_14 AC 46 ms
61,868 KB
testcase_15 AC 38 ms
53,148 KB
testcase_16 AC 37 ms
52,496 KB
testcase_17 AC 112 ms
77,292 KB
testcase_18 AC 38 ms
52,628 KB
testcase_19 AC 37 ms
53,340 KB
testcase_20 AC 37 ms
52,988 KB
testcase_21 AC 117 ms
77,572 KB
testcase_22 AC 37 ms
52,928 KB
testcase_23 AC 178 ms
79,448 KB
testcase_24 AC 38 ms
53,756 KB
testcase_25 AC 38 ms
52,872 KB
testcase_26 AC 46 ms
61,556 KB
testcase_27 AC 37 ms
53,316 KB
testcase_28 AC 45 ms
61,208 KB
testcase_29 AC 50 ms
63,136 KB
testcase_30 AC 39 ms
53,664 KB
testcase_31 AC 55 ms
64,668 KB
testcase_32 AC 36 ms
53,004 KB
testcase_33 AC 37 ms
52,380 KB
testcase_34 AC 37 ms
53,404 KB
testcase_35 AC 37 ms
53,356 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 602 ms
128,340 KB
testcase_39 AC 37 ms
53,368 KB
testcase_40 AC 547 ms
129,236 KB
testcase_41 AC 37 ms
51,996 KB
testcase_42 AC 38 ms
52,900 KB
testcase_43 AC 37 ms
52,136 KB
testcase_44 AC 37 ms
53,336 KB
testcase_45 AC 36 ms
52,484 KB
testcase_46 AC 36 ms
52,608 KB
testcase_47 AC 36 ms
52,684 KB
testcase_48 AC 154 ms
79,592 KB
testcase_49 WA -
testcase_50 AC 42 ms
61,368 KB
testcase_51 AC 97 ms
79,300 KB
testcase_52 AC 1,536 ms
131,008 KB
testcase_53 AC 136 ms
91,100 KB
testcase_54 AC 179 ms
90,804 KB
testcase_55 AC 305 ms
106,944 KB
testcase_56 AC 222 ms
106,556 KB
testcase_57 AC 37 ms
52,136 KB
testcase_58 AC 219 ms
106,864 KB
testcase_59 AC 550 ms
106,868 KB
testcase_60 AC 50 ms
63,848 KB
testcase_61 AC 247 ms
106,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

if N > 20:
    print(0)
    exit()

R = list(map(int, input().split()))
combs = [[] for k in range(20 + 1)]
rate_sums = [0 for comb in range(1 << N)]
for comb in range(1 << N):
    rate_sum = 0
    for i in range(N):
        if (comb >> i) & 1: rate_sum += R[i]
    combs[comb.bit_count()].append(comb)
    rate_sums[comb] = rate_sum

ans = 2 ** 60
for k in range(1, 20 + 1):
    combs[k].sort(key = lambda comb: rate_sums[comb])
    M = len(combs[k])
    for i in range(M - 1):
        ans = min(ans, abs(rate_sums[combs[k][i]] - rate_sums[combs[k][i + 1]]))
print(ans)
0