結果

問題 No.2918 Divide Applicants Fairly
ユーザー みうねみうね
提出日時 2024-09-17 10:57:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,135 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 162,780 KB
最終ジャッジ日時 2024-10-07 21:05:34
合計ジャッジ時間 11,664 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,824 KB
testcase_01 AC 39 ms
52,356 KB
testcase_02 AC 38 ms
52,128 KB
testcase_03 AC 37 ms
52,824 KB
testcase_04 AC 37 ms
52,488 KB
testcase_05 AC 44 ms
61,688 KB
testcase_06 AC 45 ms
60,340 KB
testcase_07 AC 37 ms
52,436 KB
testcase_08 AC 38 ms
52,720 KB
testcase_09 AC 99 ms
77,944 KB
testcase_10 AC 36 ms
52,996 KB
testcase_11 AC 38 ms
52,968 KB
testcase_12 AC 77 ms
70,212 KB
testcase_13 AC 48 ms
61,684 KB
testcase_14 AC 45 ms
60,312 KB
testcase_15 AC 38 ms
53,048 KB
testcase_16 AC 38 ms
52,816 KB
testcase_17 AC 78 ms
71,440 KB
testcase_18 AC 38 ms
52,064 KB
testcase_19 AC 38 ms
53,916 KB
testcase_20 AC 37 ms
52,868 KB
testcase_21 AC 77 ms
70,720 KB
testcase_22 AC 39 ms
53,144 KB
testcase_23 AC 100 ms
77,548 KB
testcase_24 AC 37 ms
53,100 KB
testcase_25 AC 38 ms
53,216 KB
testcase_26 AC 44 ms
62,104 KB
testcase_27 AC 1,135 ms
161,988 KB
testcase_28 AC 43 ms
60,420 KB
testcase_29 AC 47 ms
62,432 KB
testcase_30 AC 36 ms
53,040 KB
testcase_31 AC 48 ms
62,456 KB
testcase_32 AC 37 ms
51,876 KB
testcase_33 AC 38 ms
53,100 KB
testcase_34 AC 38 ms
52,688 KB
testcase_35 AC 37 ms
53,212 KB
testcase_36 AC 971 ms
160,476 KB
testcase_37 AC 420 ms
117,008 KB
testcase_38 AC 357 ms
110,976 KB
testcase_39 AC 41 ms
52,616 KB
testcase_40 AC 356 ms
110,524 KB
testcase_41 AC 414 ms
117,064 KB
testcase_42 AC 682 ms
151,404 KB
testcase_43 AC 39 ms
52,192 KB
testcase_44 AC 39 ms
53,896 KB
testcase_45 AC 39 ms
53,856 KB
testcase_46 AC 38 ms
52,260 KB
testcase_47 AC 38 ms
52,900 KB
testcase_48 AC 96 ms
77,756 KB
testcase_49 AC 414 ms
116,864 KB
testcase_50 AC 44 ms
60,612 KB
testcase_51 AC 86 ms
77,916 KB
testcase_52 AC 481 ms
110,664 KB
testcase_53 AC 111 ms
84,512 KB
testcase_54 AC 116 ms
84,408 KB
testcase_55 AC 172 ms
99,340 KB
testcase_56 AC 161 ms
98,872 KB
testcase_57 AC 1,123 ms
162,780 KB
testcase_58 AC 163 ms
99,080 KB
testcase_59 AC 207 ms
101,312 KB
testcase_60 AC 47 ms
61,532 KB
testcase_61 AC 168 ms
99,336 KB
testcase_62 AC 77 ms
70,452 KB
testcase_63 AC 79 ms
71,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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

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

ans = 2 ** 30
for k in range(11):
    combs[k].sort()
    for i in range(len(combs[k]) - 1):
        if (ans > abs(combs[k][i] - combs[k][i + 1])):
            ans = abs(combs[k][i] - combs[k][i + 1])
print(ans)
0