結果

問題 No.2918 Divide Applicants Fairly
ユーザー 高橋ゆに高橋ゆに
提出日時 2024-09-16 19:06:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 586 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 130,524 KB
最終ジャッジ日時 2024-10-07 11:30:13
合計ジャッジ時間 10,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 46 ms
60,288 KB
testcase_06 AC 47 ms
60,800 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 185 ms
79,616 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 116 ms
77,184 KB
testcase_13 AC 52 ms
62,592 KB
testcase_14 AC 47 ms
60,544 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 38 ms
51,456 KB
testcase_17 AC 118 ms
77,184 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 122 ms
77,568 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 185 ms
79,360 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 39 ms
51,712 KB
testcase_26 AC 46 ms
60,160 KB
testcase_27 AC 39 ms
51,584 KB
testcase_28 AC 47 ms
60,800 KB
testcase_29 AC 53 ms
62,720 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 55 ms
63,872 KB
testcase_32 AC 38 ms
51,712 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 39 ms
52,332 KB
testcase_35 AC 39 ms
51,840 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 623 ms
128,340 KB
testcase_39 AC 38 ms
51,712 KB
testcase_40 AC 567 ms
129,568 KB
testcase_41 AC 39 ms
52,224 KB
testcase_42 AC 39 ms
51,712 KB
testcase_43 AC 38 ms
51,840 KB
testcase_44 AC 40 ms
51,712 KB
testcase_45 AC 37 ms
51,840 KB
testcase_46 AC 39 ms
51,840 KB
testcase_47 AC 40 ms
52,096 KB
testcase_48 AC 165 ms
79,360 KB
testcase_49 WA -
testcase_50 AC 44 ms
60,032 KB
testcase_51 AC 101 ms
79,232 KB
testcase_52 AC 1,662 ms
130,524 KB
testcase_53 AC 143 ms
91,008 KB
testcase_54 AC 186 ms
90,752 KB
testcase_55 AC 321 ms
106,856 KB
testcase_56 AC 228 ms
106,824 KB
testcase_57 AC 39 ms
51,968 KB
testcase_58 AC 231 ms
106,624 KB
testcase_59 AC 569 ms
106,936 KB
testcase_60 AC 52 ms
62,720 KB
testcase_61 AC 255 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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

rates = 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 += rates[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])
    for i in range(len(combs[k]) - 1):
        ans = min(ans, abs(rate_sums[combs[k][i]] - rate_sums[combs[k][i + 1]]))
print(ans)
0