結果

問題 No.2918 Divide Applicants Fairly
ユーザー 高橋ゆに高橋ゆに
提出日時 2024-09-20 02:10:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 152,056 KB
最終ジャッジ日時 2024-10-07 11:31:59
合計ジャッジ時間 9,096 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 33 ms
52,692 KB
testcase_04 AC 34 ms
52,736 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 37 ms
53,160 KB
testcase_11 AC 36 ms
52,520 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 35 ms
52,192 KB
testcase_16 AC 35 ms
53,268 KB
testcase_17 WA -
testcase_18 AC 35 ms
52,064 KB
testcase_19 WA -
testcase_20 AC 34 ms
52,068 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 35 ms
52,968 KB
testcase_25 AC 34 ms
52,616 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 35 ms
52,952 KB
testcase_31 WA -
testcase_32 AC 36 ms
52,152 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 34 ms
53,284 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 39 ms
52,744 KB
testcase_44 AC 37 ms
52,228 KB
testcase_45 AC 36 ms
53,816 KB
testcase_46 AC 35 ms
51,964 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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

rates = list(map(int, input().split()))
rate_sums = [[] 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]
    rate_sums[comb.bit_count() - 1].append(rate_sum)

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