結果

問題 No.2918 Divide Applicants Fairly
ユーザー みうねみうね
提出日時 2024-09-17 10:53:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 162,916 KB
最終ジャッジ日時 2024-10-07 11:31:00
合計ジャッジ時間 11,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,088 KB
testcase_01 AC 36 ms
52,528 KB
testcase_02 AC 36 ms
52,952 KB
testcase_03 AC 36 ms
52,244 KB
testcase_04 AC 36 ms
53,252 KB
testcase_05 AC 45 ms
61,268 KB
testcase_06 AC 44 ms
60,916 KB
testcase_07 AC 37 ms
52,736 KB
testcase_08 AC 38 ms
52,468 KB
testcase_09 AC 100 ms
78,120 KB
testcase_10 AC 37 ms
52,756 KB
testcase_11 AC 36 ms
53,100 KB
testcase_12 AC 77 ms
71,232 KB
testcase_13 AC 45 ms
62,568 KB
testcase_14 AC 44 ms
61,028 KB
testcase_15 AC 38 ms
52,276 KB
testcase_16 AC 37 ms
53,364 KB
testcase_17 AC 75 ms
71,564 KB
testcase_18 AC 37 ms
52,548 KB
testcase_19 AC 36 ms
53,008 KB
testcase_20 AC 38 ms
53,616 KB
testcase_21 AC 76 ms
71,292 KB
testcase_22 AC 37 ms
52,376 KB
testcase_23 AC 99 ms
77,832 KB
testcase_24 AC 36 ms
52,732 KB
testcase_25 AC 37 ms
52,280 KB
testcase_26 AC 45 ms
60,972 KB
testcase_27 AC 1,093 ms
162,400 KB
testcase_28 AC 43 ms
60,216 KB
testcase_29 AC 48 ms
62,688 KB
testcase_30 AC 37 ms
53,084 KB
testcase_31 AC 50 ms
62,992 KB
testcase_32 AC 37 ms
52,840 KB
testcase_33 WA -
testcase_34 AC 39 ms
54,004 KB
testcase_35 AC 38 ms
52,328 KB
testcase_36 AC 952 ms
160,784 KB
testcase_37 AC 423 ms
117,188 KB
testcase_38 AC 359 ms
111,328 KB
testcase_39 AC 38 ms
53,752 KB
testcase_40 AC 359 ms
111,120 KB
testcase_41 AC 414 ms
117,060 KB
testcase_42 AC 692 ms
151,300 KB
testcase_43 AC 37 ms
52,064 KB
testcase_44 AC 37 ms
52,916 KB
testcase_45 AC 38 ms
52,616 KB
testcase_46 AC 38 ms
52,992 KB
testcase_47 AC 38 ms
53,196 KB
testcase_48 AC 95 ms
78,272 KB
testcase_49 AC 416 ms
116,852 KB
testcase_50 AC 43 ms
60,132 KB
testcase_51 AC 85 ms
78,004 KB
testcase_52 AC 486 ms
111,372 KB
testcase_53 AC 112 ms
84,628 KB
testcase_54 AC 118 ms
84,564 KB
testcase_55 AC 174 ms
99,532 KB
testcase_56 AC 165 ms
99,464 KB
testcase_57 AC 1,135 ms
162,916 KB
testcase_58 AC 164 ms
99,432 KB
testcase_59 AC 209 ms
102,356 KB
testcase_60 AC 47 ms
61,992 KB
testcase_61 AC 165 ms
99,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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

rates = list(map(int, input().split()))
combs = [[] for k in range(11 + 1)]
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 ** 60
for k in range(1, 11 + 1):
    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